Ignore:
Timestamp:
08/01/19 12:11:21 (5 years ago)
Author:
pharms
Message:

Update to java 11

Location:
trunk/autoquest-jfcmonitor
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-jfcmonitor/.classpath

    r2182 r2260  
    1313                </attributes> 
    1414        </classpathentry> 
    15         <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> 
    16                 <attributes> 
    17                         <attribute name="maven.pomderived" value="true"/> 
    18                 </attributes> 
    19         </classpathentry> 
     15        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 
    2016        <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> 
    2117                <attributes> 
  • trunk/autoquest-jfcmonitor/pom.xml

    r2202 r2260  
    3636            <plugin> 
    3737                <artifactId>maven-compiler-plugin</artifactId> 
    38                 <version>2.3.2</version> 
     38                <version>3.8.0</version> 
    3939                <configuration> 
    40                     <source>1.8</source> 
    41                     <target>1.8</target> 
     40                    <release>11</release> 
    4241                </configuration> 
    4342            </plugin> 
  • trunk/autoquest-jfcmonitor/src/main/java/de/ugoe/cs/autoquest/jfcmonitor/JFCListener.java

    r1001 r2260  
    7777                builder.append(" <param name=\"Button\" value=\"" + mouseEvent.getButton() + 
    7878                    "\" />" + StringTools.ENDLINE); 
    79                 builder.append(" <param name=\"Modifiers\" value=\"" + mouseEvent.getModifiers() + 
     79                builder.append(" <param name=\"Modifiers\" value=\"" + mouseEvent.getModifiersEx() + 
    8080                    "\" />" + StringTools.ENDLINE); 
    8181                addSourceInfo(builder, event); 
     
    9090                builder.append(" <param name=\"KeyCode\" value=\"" + keyEvent.getKeyCode() + 
    9191                    "\" />" + StringTools.ENDLINE); 
    92                 builder.append(" <param name=\"Modifiers\" value=\"" + keyEvent.getModifiers() + 
     92                builder.append(" <param name=\"Modifiers\" value=\"" + keyEvent.getModifiersEx() + 
    9393                    "\" />" + StringTools.ENDLINE); 
    9494                addSourceInfo(builder, event); 
Note: See TracChangeset for help on using the changeset viewer.