Revision: 17856
          http://sourceforge.net/p/gate/code/17856
Author:   markagreenwood
Date:     2014-04-17 13:58:57 +0000 (Thu, 17 Apr 2014)
Log Message:
-----------
fixed the eclipse settings and the warnings in another class

Modified Paths:
--------------
    gate/trunk/.settings/org.eclipse.jdt.core.prefs
    gate/trunk/src/main/gate/gui/BootStrapDialog.java

Modified: gate/trunk/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- gate/trunk/.settings/org.eclipse.jdt.core.prefs     2014-04-17 13:53:59 UTC 
(rev 17855)
+++ gate/trunk/.settings/org.eclipse.jdt.core.prefs     2014-04-17 13:58:57 UTC 
(rev 17856)
@@ -1,14 +1,14 @@
 eclipse.preferences.version=1
 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.compliance=1.7
 org.eclipse.jdt.core.compiler.debug.lineNumber=generate
 org.eclipse.jdt.core.compiler.debug.localVariable=generate
 org.eclipse.jdt.core.compiler.debug.sourceFile=generate
 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
 org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.source=1.6
+org.eclipse.jdt.core.compiler.source=1.7
 org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
 
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0

Modified: gate/trunk/src/main/gate/gui/BootStrapDialog.java
===================================================================
--- gate/trunk/src/main/gate/gui/BootStrapDialog.java   2014-04-17 13:53:59 UTC 
(rev 17855)
+++ gate/trunk/src/main/gate/gui/BootStrapDialog.java   2014-04-17 13:58:57 UTC 
(rev 17856)
@@ -52,7 +52,7 @@
   JTextField packageNameTextField = null;
 
   JLabel     resourceTypesLabel = null;
-  JComboBox  resourceTypesComboBox = null;
+  JComboBox<String>  resourceTypesComboBox = null;
 
   JLabel     classNameLabel = null;
   JTextField classNameTextField = null;
@@ -200,7 +200,7 @@
     resourceTypesLabel.setAlignmentX(Component.LEFT_ALIGNMENT);
     Vector<String> comboCont = new Vector<String>(resourceTypes.keySet());
     Collections.sort(comboCont);
-    resourceTypesComboBox = new JComboBox(comboCont);
+    resourceTypesComboBox = new JComboBox<String>(comboCont);
     resourceTypesComboBox.setEditable(false);
     resourceTypesComboBox.setAlignmentX(Component.LEFT_ALIGNMENT);
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/NeoTech
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to