├── .gitignore ├── Build ├── org.jamopp.build.juno │ ├── .project │ └── jamopp-juno.repositories ├── org.jamopp.build.kepler │ ├── .project │ └── jamopp-kepler.repositories ├── org.jamopp.build.luna │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ └── jamopp-luna.repositories └── org.jamopp.build │ ├── .project │ └── jamopp.repositories ├── Core ├── org.emftext.language.java.resource.bcel │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ └── src-bcel │ │ └── org │ │ └── apache │ │ └── bcel6_2_0 │ │ ├── Const.java │ │ ├── Constants.java │ │ ├── ExceptionConst.java │ │ ├── ExceptionConstants.java │ │ ├── Repository.java │ │ ├── classfile │ │ ├── AccessFlags.java │ │ ├── AnnotationDefault.java │ │ ├── AnnotationElementValue.java │ │ ├── AnnotationEntry.java │ │ ├── Annotations.java │ │ ├── ArrayElementValue.java │ │ ├── Attribute.java │ │ ├── AttributeReader.java │ │ ├── BootstrapMethod.java │ │ ├── BootstrapMethods.java │ │ ├── ClassElementValue.java │ │ ├── ClassFormatException.java │ │ ├── ClassParser.java │ │ ├── Code.java │ │ ├── CodeException.java │ │ ├── Constant.java │ │ ├── ConstantCP.java │ │ ├── ConstantClass.java │ │ ├── ConstantDouble.java │ │ ├── ConstantFieldref.java │ │ ├── ConstantFloat.java │ │ ├── ConstantInteger.java │ │ ├── ConstantInterfaceMethodref.java │ │ ├── ConstantInvokeDynamic.java │ │ ├── ConstantLong.java │ │ ├── ConstantMethodHandle.java │ │ ├── ConstantMethodType.java │ │ ├── ConstantMethodref.java │ │ ├── ConstantModule.java │ │ ├── ConstantNameAndType.java │ │ ├── ConstantObject.java │ │ ├── ConstantPackage.java │ │ ├── ConstantPool.java │ │ ├── ConstantString.java │ │ ├── ConstantUtf8.java │ │ ├── ConstantValue.java │ │ ├── Deprecated.java │ │ ├── DescendingVisitor.java │ │ ├── ElementValue.java │ │ ├── ElementValuePair.java │ │ ├── EmptyVisitor.java │ │ ├── EnclosingMethod.java │ │ ├── EnumElementValue.java │ │ ├── ExceptionTable.java │ │ ├── Field.java │ │ ├── FieldOrMethod.java │ │ ├── InnerClass.java │ │ ├── InnerClasses.java │ │ ├── JavaClass.java │ │ ├── LineNumber.java │ │ ├── LineNumberTable.java │ │ ├── LocalVariable.java │ │ ├── LocalVariableTable.java │ │ ├── LocalVariableTypeTable.java │ │ ├── Method.java │ │ ├── MethodParameter.java │ │ ├── MethodParameters.java │ │ ├── Node.java │ │ ├── PMGClass.java │ │ ├── ParameterAnnotationEntry.java │ │ ├── ParameterAnnotations.java │ │ ├── RuntimeInvisibleAnnotations.java │ │ ├── RuntimeInvisibleParameterAnnotations.java │ │ ├── RuntimeVisibleAnnotations.java │ │ ├── RuntimeVisibleParameterAnnotations.java │ │ ├── Signature.java │ │ ├── SimpleElementValue.java │ │ ├── SourceFile.java │ │ ├── StackMap.java │ │ ├── StackMapEntry.java │ │ ├── StackMapType.java │ │ ├── Synthetic.java │ │ ├── Unknown.java │ │ ├── UnknownAttributeReader.java │ │ ├── Utility.java │ │ ├── Visitor.java │ │ └── package.html │ │ ├── generic │ │ ├── AALOAD.java │ │ ├── AASTORE.java │ │ ├── ACONST_NULL.java │ │ ├── ALOAD.java │ │ ├── ANEWARRAY.java │ │ ├── ARETURN.java │ │ ├── ARRAYLENGTH.java │ │ ├── ASTORE.java │ │ ├── ATHROW.java │ │ ├── AllocationInstruction.java │ │ ├── AnnotationElementValueGen.java │ │ ├── AnnotationEntryGen.java │ │ ├── ArithmeticInstruction.java │ │ ├── ArrayElementValueGen.java │ │ ├── ArrayInstruction.java │ │ ├── ArrayType.java │ │ ├── BALOAD.java │ │ ├── BASTORE.java │ │ ├── BIPUSH.java │ │ ├── BREAKPOINT.java │ │ ├── BasicType.java │ │ ├── BranchHandle.java │ │ ├── BranchInstruction.java │ │ ├── CALOAD.java │ │ ├── CASTORE.java │ │ ├── CHECKCAST.java │ │ ├── CPInstruction.java │ │ ├── ClassElementValueGen.java │ │ ├── ClassGen.java │ │ ├── ClassGenException.java │ │ ├── ClassObserver.java │ │ ├── CodeExceptionGen.java │ │ ├── CompoundInstruction.java │ │ ├── ConstantPoolGen.java │ │ ├── ConstantPushInstruction.java │ │ ├── ConversionInstruction.java │ │ ├── D2F.java │ │ ├── D2I.java │ │ ├── D2L.java │ │ ├── DADD.java │ │ ├── DALOAD.java │ │ ├── DASTORE.java │ │ ├── DCMPG.java │ │ ├── DCMPL.java │ │ ├── DCONST.java │ │ ├── DDIV.java │ │ ├── DLOAD.java │ │ ├── DMUL.java │ │ ├── DNEG.java │ │ ├── DREM.java │ │ ├── DRETURN.java │ │ ├── DSTORE.java │ │ ├── DSUB.java │ │ ├── DUP.java │ │ ├── DUP2.java │ │ ├── DUP2_X1.java │ │ ├── DUP2_X2.java │ │ ├── DUP_X1.java │ │ ├── DUP_X2.java │ │ ├── ElementValueGen.java │ │ ├── ElementValuePairGen.java │ │ ├── EmptyVisitor.java │ │ ├── EnumElementValueGen.java │ │ ├── ExceptionThrower.java │ │ ├── F2D.java │ │ ├── F2I.java │ │ ├── F2L.java │ │ ├── FADD.java │ │ ├── FALOAD.java │ │ ├── FASTORE.java │ │ ├── FCMPG.java │ │ ├── FCMPL.java │ │ ├── FCONST.java │ │ ├── FDIV.java │ │ ├── FLOAD.java │ │ ├── FMUL.java │ │ ├── FNEG.java │ │ ├── FREM.java │ │ ├── FRETURN.java │ │ ├── FSTORE.java │ │ ├── FSUB.java │ │ ├── FieldGen.java │ │ ├── FieldGenOrMethodGen.java │ │ ├── FieldInstruction.java │ │ ├── FieldObserver.java │ │ ├── FieldOrMethod.java │ │ ├── GETFIELD.java │ │ ├── GETSTATIC.java │ │ ├── GOTO.java │ │ ├── GOTO_W.java │ │ ├── GotoInstruction.java │ │ ├── I2B.java │ │ ├── I2C.java │ │ ├── I2D.java │ │ ├── I2F.java │ │ ├── I2L.java │ │ ├── I2S.java │ │ ├── IADD.java │ │ ├── IALOAD.java │ │ ├── IAND.java │ │ ├── IASTORE.java │ │ ├── ICONST.java │ │ ├── IDIV.java │ │ ├── IFEQ.java │ │ ├── IFGE.java │ │ ├── IFGT.java │ │ ├── IFLE.java │ │ ├── IFLT.java │ │ ├── IFNE.java │ │ ├── IFNONNULL.java │ │ ├── IFNULL.java │ │ ├── IF_ACMPEQ.java │ │ ├── IF_ACMPNE.java │ │ ├── IF_ICMPEQ.java │ │ ├── IF_ICMPGE.java │ │ ├── IF_ICMPGT.java │ │ ├── IF_ICMPLE.java │ │ ├── IF_ICMPLT.java │ │ ├── IF_ICMPNE.java │ │ ├── IINC.java │ │ ├── ILOAD.java │ │ ├── IMPDEP1.java │ │ ├── IMPDEP2.java │ │ ├── IMUL.java │ │ ├── INEG.java │ │ ├── INSTANCEOF.java │ │ ├── INVOKEDYNAMIC.java │ │ ├── INVOKEINTERFACE.java │ │ ├── INVOKESPECIAL.java │ │ ├── INVOKESTATIC.java │ │ ├── INVOKEVIRTUAL.java │ │ ├── IOR.java │ │ ├── IREM.java │ │ ├── IRETURN.java │ │ ├── ISHL.java │ │ ├── ISHR.java │ │ ├── ISTORE.java │ │ ├── ISUB.java │ │ ├── IUSHR.java │ │ ├── IXOR.java │ │ ├── IfInstruction.java │ │ ├── IndexedInstruction.java │ │ ├── Instruction.java │ │ ├── InstructionComparator.java │ │ ├── InstructionConst.java │ │ ├── InstructionConstants.java │ │ ├── InstructionFactory.java │ │ ├── InstructionHandle.java │ │ ├── InstructionList.java │ │ ├── InstructionListObserver.java │ │ ├── InstructionTargeter.java │ │ ├── InvokeInstruction.java │ │ ├── JSR.java │ │ ├── JSR_W.java │ │ ├── JsrInstruction.java │ │ ├── L2D.java │ │ ├── L2F.java │ │ ├── L2I.java │ │ ├── LADD.java │ │ ├── LALOAD.java │ │ ├── LAND.java │ │ ├── LASTORE.java │ │ ├── LCMP.java │ │ ├── LCONST.java │ │ ├── LDC.java │ │ ├── LDC2_W.java │ │ ├── LDC_W.java │ │ ├── LDIV.java │ │ ├── LLOAD.java │ │ ├── LMUL.java │ │ ├── LNEG.java │ │ ├── LOOKUPSWITCH.java │ │ ├── LOR.java │ │ ├── LREM.java │ │ ├── LRETURN.java │ │ ├── LSHL.java │ │ ├── LSHR.java │ │ ├── LSTORE.java │ │ ├── LSUB.java │ │ ├── LUSHR.java │ │ ├── LXOR.java │ │ ├── LineNumberGen.java │ │ ├── LoadClass.java │ │ ├── LoadInstruction.java │ │ ├── LocalVariableGen.java │ │ ├── LocalVariableInstruction.java │ │ ├── MONITORENTER.java │ │ ├── MONITOREXIT.java │ │ ├── MULTIANEWARRAY.java │ │ ├── MethodGen.java │ │ ├── MethodObserver.java │ │ ├── NEW.java │ │ ├── NEWARRAY.java │ │ ├── NOP.java │ │ ├── NameSignatureInstruction.java │ │ ├── NamedAndTyped.java │ │ ├── ObjectType.java │ │ ├── POP.java │ │ ├── POP2.java │ │ ├── PUSH.java │ │ ├── PUTFIELD.java │ │ ├── PUTSTATIC.java │ │ ├── PopInstruction.java │ │ ├── PushInstruction.java │ │ ├── RET.java │ │ ├── RETURN.java │ │ ├── ReferenceType.java │ │ ├── ReturnInstruction.java │ │ ├── ReturnaddressType.java │ │ ├── SALOAD.java │ │ ├── SASTORE.java │ │ ├── SIPUSH.java │ │ ├── SWAP.java │ │ ├── SWITCH.java │ │ ├── Select.java │ │ ├── SimpleElementValueGen.java │ │ ├── StackConsumer.java │ │ ├── StackInstruction.java │ │ ├── StackProducer.java │ │ ├── StoreInstruction.java │ │ ├── TABLESWITCH.java │ │ ├── TargetLostException.java │ │ ├── Type.java │ │ ├── TypedInstruction.java │ │ ├── UnconditionalBranch.java │ │ ├── VariableLengthInstruction.java │ │ ├── Visitor.java │ │ └── package.html │ │ ├── package.html │ │ ├── util │ │ ├── AttributeHTML.java │ │ ├── BCELComparator.java │ │ ├── BCELFactory.java │ │ ├── BCELifier.java │ │ ├── ByteSequence.java │ │ ├── Class2HTML.java │ │ ├── ClassLoader.java │ │ ├── ClassLoaderRepository.java │ │ ├── ClassPath.java │ │ ├── ClassPathRepository.java │ │ ├── ClassQueue.java │ │ ├── ClassSet.java │ │ ├── ClassStack.java │ │ ├── ClassVector.java │ │ ├── CodeHTML.java │ │ ├── ConstantHTML.java │ │ ├── InstructionFinder.java │ │ ├── JavaWrapper.java │ │ ├── MemorySensitiveClassPathRepository.java │ │ ├── MethodHTML.java │ │ ├── Repository.java │ │ ├── SyntheticRepository.java │ │ └── package.html │ │ └── verifier │ │ ├── GraphicalVerifier.java │ │ ├── NativeVerifier.java │ │ ├── PassVerifier.java │ │ ├── TransitiveHull.java │ │ ├── VerificationResult.java │ │ ├── Verifier.java │ │ ├── VerifierAppFrame.java │ │ ├── VerifierFactory.java │ │ ├── VerifierFactoryListModel.java │ │ ├── VerifierFactoryObserver.java │ │ ├── VerifyDialog.java │ │ ├── exc │ │ ├── AssertionViolatedException.java │ │ ├── ClassConstraintException.java │ │ ├── CodeConstraintException.java │ │ ├── InvalidMethodException.java │ │ ├── LinkingConstraintException.java │ │ ├── LoadingException.java │ │ ├── LocalVariableInfoInconsistentException.java │ │ ├── StaticCodeConstraintException.java │ │ ├── StaticCodeInstructionConstraintException.java │ │ ├── StaticCodeInstructionOperandConstraintException.java │ │ ├── StructuralCodeConstraintException.java │ │ ├── Utility.java │ │ ├── VerificationException.java │ │ ├── VerifierConstraintViolatedException.java │ │ └── package.html │ │ ├── package.html │ │ ├── statics │ │ ├── DOUBLE_Upper.java │ │ ├── IntList.java │ │ ├── LONG_Upper.java │ │ ├── LocalVariableInfo.java │ │ ├── LocalVariablesInfo.java │ │ ├── Pass1Verifier.java │ │ ├── Pass2Verifier.java │ │ ├── Pass3aVerifier.java │ │ ├── StringRepresentation.java │ │ └── package.html │ │ └── structurals │ │ ├── ControlFlowGraph.java │ │ ├── ExceptionHandler.java │ │ ├── ExceptionHandlers.java │ │ ├── ExecutionVisitor.java │ │ ├── Frame.java │ │ ├── GenericArray.java │ │ ├── InstConstraintVisitor.java │ │ ├── InstructionContext.java │ │ ├── LocalVariables.java │ │ ├── OperandStack.java │ │ ├── Pass3bVerifier.java │ │ ├── Subroutine.java │ │ ├── Subroutines.java │ │ ├── UninitializedObjectType.java │ │ └── package.html ├── org.emftext.language.java.resource.java │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ ├── schema │ │ ├── additional_extension_parser.exsd │ │ └── default_load_options.exsd │ └── src │ │ └── org │ │ └── emftext │ │ └── language │ │ └── java │ │ └── resource │ │ └── java │ │ ├── analysis │ │ ├── AnnotationAttributeSettingAttributeReferenceResolver.java │ │ ├── AnnotationInstanceAnnotationReferenceResolver.java │ │ ├── ClassifierImportClassifierReferenceResolver.java │ │ ├── ClassifierReferenceTargetReferenceResolver.java │ │ ├── ElementReferenceTargetReferenceResolver.java │ │ ├── JavaBOOLEAN_LITERALTokenResolver.java │ │ ├── JavaCHARACTER_LITERALTokenResolver.java │ │ ├── JavaCOLLECT_commentsTokenResolver.java │ │ ├── JavaDECIMAL_DOUBLE_LITERALTokenResolver.java │ │ ├── JavaDECIMAL_FLOAT_LITERALTokenResolver.java │ │ ├── JavaDECIMAL_INTEGER_LITERALTokenResolver.java │ │ ├── JavaDECIMAL_LONG_LITERALTokenResolver.java │ │ ├── JavaHEX_DOUBLE_LITERALTokenResolver.java │ │ ├── JavaHEX_FLOAT_LITERALTokenResolver.java │ │ ├── JavaHEX_INTEGER_LITERALTokenResolver.java │ │ ├── JavaHEX_LONG_LITERALTokenResolver.java │ │ ├── JavaIDENTIFIERTokenResolver.java │ │ ├── JavaOCTAL_INTEGER_LITERALTokenResolver.java │ │ ├── JavaOCTAL_LONG_LITERALTokenResolver.java │ │ ├── JavaSTRING_LITERALTokenResolver.java │ │ ├── JumpTargetReferenceResolver.java │ │ ├── StaticMemberImportStaticMembersReferenceResolver.java │ │ ├── decider │ │ │ ├── AbstractDecider.java │ │ │ ├── ConcreteClassifierDecider.java │ │ │ ├── EnumConstantDecider.java │ │ │ ├── FieldDecider.java │ │ │ ├── IResolutionTargetDecider.java │ │ │ ├── InterfaceMethodDecider.java │ │ │ ├── JumpLabelDecider.java │ │ │ ├── LocalVariableDecider.java │ │ │ ├── MethodDecider.java │ │ │ ├── PackageDecider.java │ │ │ ├── ParameterDecider.java │ │ │ └── TypeParameterDecider.java │ │ └── helper │ │ │ ├── LiteralConstants.java │ │ │ └── ScopedTreeWalker.java │ │ └── mopp │ │ └── JavaResourcePostProcessor.java ├── org.emftext.language.java.resource │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── emftext │ │ └── language │ │ └── java │ │ └── resource │ │ ├── ClassFileModelLoader.java │ │ ├── IExtendedJavaOptions.java │ │ ├── JaMoPPUtil.java │ │ ├── JavaSourceOrClassFileResource.java │ │ └── JavaSourceOrClassFileResourceFactoryImpl.java └── org.emftext.language.java │ ├── .checkstyle │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.gmf.bridge.ui.dashboard.prefs │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── documentation │ ├── 2008-08-22 Meeting Agenda.doc │ ├── EMFText Development Setup.docx │ ├── README.txt │ └── antlr_java.g │ ├── metamodel │ ├── java.cs │ ├── java.ecore │ ├── java.ecore.notes.txt │ ├── java.ecorediag │ ├── java.genmodel │ ├── java.newfile.java │ └── java │ │ ├── classifiers │ │ ├── Annotation.ejava │ │ ├── AnonymousClass.ejava │ │ ├── Class.ejava │ │ ├── Classifier.ejava │ │ ├── ConcreteClassifier.ejava │ │ ├── Enumeration.ejava │ │ └── Interface.ejava │ │ ├── commons │ │ ├── Commentable.ejava │ │ └── NamespaceAwareElement.ejava │ │ ├── containers │ │ ├── CompilationUnit.ejava │ │ ├── JavaRoot.ejava │ │ └── Package.ejava │ │ ├── expressions │ │ └── Expression.ejava │ │ ├── generics │ │ └── TypeParameter.ejava │ │ ├── imports │ │ ├── Import.ejava │ │ └── ImportingElement.ejava │ │ ├── literals │ │ └── Literal.ejava │ │ ├── members │ │ ├── AdditionalField.ejava │ │ ├── MemberContainer.ejava │ │ └── Method.ejava │ │ ├── modifiers │ │ └── AnnotableAndModifiable.ejava │ │ ├── references │ │ ├── Argumentable.ejava │ │ └── Reference.ejava │ │ ├── statements │ │ └── StatementListContainer.ejava │ │ ├── types │ │ ├── PrimitiveType.ejava │ │ ├── Type.ejava │ │ └── TypeReference.ejava │ │ └── variables │ │ ├── AdditionalLocalVariable.ejava │ │ └── Variable.ejava │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ └── java_classpath_initializer.exsd │ ├── src │ └── org │ │ └── emftext │ │ └── language │ │ └── java │ │ ├── JavaClasspath.java │ │ ├── JavaFactory.java │ │ ├── JavaPackage.java │ │ ├── JavaUniquePathConstructor.java │ │ ├── extensions │ │ ├── classifiers │ │ │ ├── AnnotationExtension.java │ │ │ ├── AnonymousClassExtension.java │ │ │ ├── ClassExtension.java │ │ │ ├── ClassifierExtension.java │ │ │ ├── ConcreteClassifierExtension.java │ │ │ ├── EnumerationExtension.java │ │ │ └── InterfaceExtension.java │ │ ├── commons │ │ │ ├── CommentableExtension.java │ │ │ └── NamespaceAwareElementExtension.java │ │ ├── containers │ │ │ ├── CompilationUnitExtension.java │ │ │ ├── JavaRootExtension.java │ │ │ └── PackageExtension.java │ │ ├── expressions │ │ │ └── ExpressionExtension.java │ │ ├── generics │ │ │ └── TypeParameterExtension.java │ │ ├── imports │ │ │ ├── ImportExtension.java │ │ │ └── ImportingElementExtension.java │ │ ├── literals │ │ │ └── LiteralExtension.java │ │ ├── members │ │ │ ├── AdditionalFieldExtension.java │ │ │ ├── ConstructorExtension.java │ │ │ ├── MemberContainerExtension.java │ │ │ └── MethodExtension.java │ │ ├── modifiers │ │ │ └── AnnotableAndModifiableExtension.java │ │ ├── references │ │ │ ├── ArgumentableExtension.java │ │ │ └── ReferenceExtension.java │ │ ├── statements │ │ │ └── StatementListContainerExtension.java │ │ ├── types │ │ │ ├── PrimitiveTypeExtension.java │ │ │ ├── TypeExtension.java │ │ │ └── TypeReferenceExtension.java │ │ └── variables │ │ │ ├── AdditionalLocalVariableExtension.java │ │ │ └── VariableExtension.java │ │ ├── impl │ │ ├── JavaFactoryImpl.java │ │ └── JavaPackageImpl.java │ │ └── util │ │ ├── CharacterEscaper.java │ │ ├── JavaAdapterFactory.java │ │ ├── JavaModelCompletion.java │ │ ├── JavaModelRepairer.java │ │ ├── JavaSwitch.java │ │ ├── TemporalCompositeClassifier.java │ │ ├── TemporalFullNameHolder.java │ │ ├── TemporalTypeArgumentHolder.java │ │ └── UniqueEList.java │ └── templates │ └── model │ └── Class │ ├── basicGetGenFeature.TODO.override.javajetinc │ ├── basicSetGenFeature.TODO.override.javajetinc │ ├── getGenFeature.TODO.override.javajetinc │ └── setGenFeature.TODO.override.javajetinc ├── Deploy └── org.jamopp.deploy │ ├── .project │ ├── associateSites.xml │ ├── build.properties │ ├── maven-repository.properties │ ├── site.deployment │ └── site.xml ├── Doc └── org.emftext.language.java.doc │ ├── .classpath │ ├── .project │ ├── .texlipse │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── html │ ├── JaMoPPGuide.css │ ├── JaMoPPGuide.html │ └── figures │ │ └── JaMoPPLogo.png │ ├── logo │ ├── jamopp_icon.psd │ ├── jamopp_logo.ai │ ├── jamopp_logo.pdf │ └── jamopp_logo.psd │ ├── plugin.xml │ ├── publications │ ├── 2009_JaMoPP_The_Java_Model_Parser_and_Printer.pdf │ ├── 2009_REM_JaMoPPReverse.pdf │ ├── 2009_SLE_JaMoPP.pdf │ └── 2011_MDSM_JaMoPPModernise.pdf │ ├── src │ └── org │ │ └── emftext │ │ └── language │ │ └── java │ │ └── doc │ │ ├── AppendixGenerator.java │ │ ├── JaMoPPDocumentation.java │ │ ├── JaMoPPDocumentation.natspec │ │ └── _NatSpecTemplate.java │ └── toc.xml ├── Eclipse-Integration ├── org.emftext.language.java.edit │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── icons │ │ └── full │ │ │ ├── ctool16 │ │ │ ├── CreateAdditiveExpression_additiveOperators_Addition.gif │ │ │ ├── CreateAdditiveExpression_additiveOperators_Subtraction.gif │ │ │ ├── CreateAdditiveExpression_children_AnnotationInstance.gif │ │ │ ├── CreateAdditiveExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateAdditiveExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateAdditiveExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateAdditiveExpression_children_BooleanLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_CastExpression.gif │ │ │ ├── CreateAdditiveExpression_children_CharacterLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateAdditiveExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_HexLongLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_IdentifierReference.gif │ │ │ ├── CreateAdditiveExpression_children_MethodCall.gif │ │ │ ├── CreateAdditiveExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateAdditiveExpression_children_NestedExpression.gif │ │ │ ├── CreateAdditiveExpression_children_NewConstructorCall.gif │ │ │ ├── CreateAdditiveExpression_children_NullLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateAdditiveExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateAdditiveExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateAdditiveExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateAdditiveExpression_children_SelfReference.gif │ │ │ ├── CreateAdditiveExpression_children_StringReference.gif │ │ │ ├── CreateAdditiveExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateAdditiveExpression_children_UnaryExpression.gif │ │ │ ├── CreateAndExpression_children_AdditiveExpression.gif │ │ │ ├── CreateAndExpression_children_AnnotationInstance.gif │ │ │ ├── CreateAndExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateAndExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateAndExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateAndExpression_children_BooleanLiteral.gif │ │ │ ├── CreateAndExpression_children_CastExpression.gif │ │ │ ├── CreateAndExpression_children_CharacterLiteral.gif │ │ │ ├── CreateAndExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateAndExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateAndExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateAndExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateAndExpression_children_EqualityExpression.gif │ │ │ ├── CreateAndExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateAndExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateAndExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateAndExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateAndExpression_children_HexLongLiteral.gif │ │ │ ├── CreateAndExpression_children_IdentifierReference.gif │ │ │ ├── CreateAndExpression_children_InstanceOfExpression.gif │ │ │ ├── CreateAndExpression_children_MethodCall.gif │ │ │ ├── CreateAndExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateAndExpression_children_NestedExpression.gif │ │ │ ├── CreateAndExpression_children_NewConstructorCall.gif │ │ │ ├── CreateAndExpression_children_NullLiteral.gif │ │ │ ├── CreateAndExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateAndExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateAndExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateAndExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateAndExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateAndExpression_children_RelationExpression.gif │ │ │ ├── CreateAndExpression_children_SelfReference.gif │ │ │ ├── CreateAndExpression_children_ShiftExpression.gif │ │ │ ├── CreateAndExpression_children_StringReference.gif │ │ │ ├── CreateAndExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateAndExpression_children_UnaryExpression.gif │ │ │ ├── CreateAnnotable_annotations_AnnotationInstance.gif │ │ │ ├── CreateAnnotationAttributeSetting_attribute_AnnotationAttribute.gif │ │ │ ├── CreateAnnotationAttributeSetting_attribute_InterfaceMethod.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_AdditiveExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_AndExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_AnnotationInstance.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ArrayInitializer.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ArrayInstantiationBySize.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_AssignmentExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_BooleanLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_CastExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_CharacterLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ConditionalAndExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ConditionalExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ConditionalOrExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_DecimalDoubleLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_DecimalFloatLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_DecimalIntegerLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_DecimalLongLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_EqualityExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ExclusiveOrExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ExplicitConstructorCall.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_HexDoubleLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_HexFloatLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_HexIntegerLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_HexLongLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_IdentifierReference.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_InclusiveOrExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_InstanceOfExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_MethodCall.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_MultiplicativeExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_NestedExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_NewConstructorCall.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_NullLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_OctalIntegerLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_OctalLongLiteral.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_PrimitiveTypeReference.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ReflectiveClassReference.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_RelationExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_SelfReference.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_ShiftExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_StringReference.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateAnnotationAttributeSetting_value_UnaryExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_AdditiveExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_AndExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_AnnotationInstance.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ArrayInstantiationBySize.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_AssignmentExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_BooleanLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_CastExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_CharacterLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ConditionalAndExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ConditionalExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ConditionalOrExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_DecimalDoubleLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_DecimalFloatLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_DecimalIntegerLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_DecimalLongLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_EqualityExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ExclusiveOrExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ExplicitConstructorCall.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_HexDoubleLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_HexFloatLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_HexIntegerLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_HexLongLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_IdentifierReference.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_InclusiveOrExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_InstanceOfExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_MethodCall.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_MultiplicativeExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_NestedExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_NewConstructorCall.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_NullLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_OctalIntegerLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_OctalLongLiteral.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_PrimitiveTypeReference.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ReflectiveClassReference.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_RelationExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_SelfReference.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_ShiftExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_StringReference.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateAnnotationAttribute_defaultValue_UnaryExpression.gif │ │ │ ├── CreateAnnotationInstance_parameter_AnnotationParameterList.gif │ │ │ ├── CreateAnnotationInstance_parameter_SingleAnnotationParameter.gif │ │ │ ├── CreateAnnotationParameterList_settings_AnnotationAttributeSetting.gif │ │ │ ├── CreateArgumentable_arguments_AdditiveExpression.gif │ │ │ ├── CreateArgumentable_arguments_AndExpression.gif │ │ │ ├── CreateArgumentable_arguments_AnnotationInstance.gif │ │ │ ├── CreateArgumentable_arguments_ArrayInstantiationBySize.gif │ │ │ ├── CreateArgumentable_arguments_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateArgumentable_arguments_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateArgumentable_arguments_AssignmentExpression.gif │ │ │ ├── CreateArgumentable_arguments_BooleanLiteral.gif │ │ │ ├── CreateArgumentable_arguments_CastExpression.gif │ │ │ ├── CreateArgumentable_arguments_CharacterLiteral.gif │ │ │ ├── CreateArgumentable_arguments_ConditionalAndExpression.gif │ │ │ ├── CreateArgumentable_arguments_ConditionalExpression.gif │ │ │ ├── CreateArgumentable_arguments_ConditionalOrExpression.gif │ │ │ ├── CreateArgumentable_arguments_DecimalDoubleLiteral.gif │ │ │ ├── CreateArgumentable_arguments_DecimalFloatLiteral.gif │ │ │ ├── CreateArgumentable_arguments_DecimalIntegerLiteral.gif │ │ │ ├── CreateArgumentable_arguments_DecimalLongLiteral.gif │ │ │ ├── CreateArgumentable_arguments_EqualityExpression.gif │ │ │ ├── CreateArgumentable_arguments_ExclusiveOrExpression.gif │ │ │ ├── CreateArgumentable_arguments_ExplicitConstructorCall.gif │ │ │ ├── CreateArgumentable_arguments_HexDoubleLiteral.gif │ │ │ ├── CreateArgumentable_arguments_HexFloatLiteral.gif │ │ │ ├── CreateArgumentable_arguments_HexIntegerLiteral.gif │ │ │ ├── CreateArgumentable_arguments_HexLongLiteral.gif │ │ │ ├── CreateArgumentable_arguments_IdentifierReference.gif │ │ │ ├── CreateArgumentable_arguments_InclusiveOrExpression.gif │ │ │ ├── CreateArgumentable_arguments_InstanceOfExpression.gif │ │ │ ├── CreateArgumentable_arguments_MethodCall.gif │ │ │ ├── CreateArgumentable_arguments_MultiplicativeExpression.gif │ │ │ ├── CreateArgumentable_arguments_NestedExpression.gif │ │ │ ├── CreateArgumentable_arguments_NewConstructorCall.gif │ │ │ ├── CreateArgumentable_arguments_NullLiteral.gif │ │ │ ├── CreateArgumentable_arguments_OctalIntegerLiteral.gif │ │ │ ├── CreateArgumentable_arguments_OctalLongLiteral.gif │ │ │ ├── CreateArgumentable_arguments_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateArgumentable_arguments_PrimitiveTypeReference.gif │ │ │ ├── CreateArgumentable_arguments_ReflectiveClassReference.gif │ │ │ ├── CreateArgumentable_arguments_RelationExpression.gif │ │ │ ├── CreateArgumentable_arguments_SelfReference.gif │ │ │ ├── CreateArgumentable_arguments_ShiftExpression.gif │ │ │ ├── CreateArgumentable_arguments_StringReference.gif │ │ │ ├── CreateArgumentable_arguments_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateArgumentable_arguments_UnaryExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_AdditiveExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_AndExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_AnnotationInstance.gif │ │ │ ├── CreateArrayInitializer_initialValues_ArrayInitializer.gif │ │ │ ├── CreateArrayInitializer_initialValues_ArrayInstantiationBySize.gif │ │ │ ├── CreateArrayInitializer_initialValues_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateArrayInitializer_initialValues_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateArrayInitializer_initialValues_AssignmentExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_BooleanLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_CastExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_CharacterLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_ConditionalAndExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_ConditionalExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_ConditionalOrExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_DecimalDoubleLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_DecimalFloatLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_DecimalIntegerLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_DecimalLongLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_EqualityExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_ExclusiveOrExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_ExplicitConstructorCall.gif │ │ │ ├── CreateArrayInitializer_initialValues_HexDoubleLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_HexFloatLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_HexIntegerLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_HexLongLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_IdentifierReference.gif │ │ │ ├── CreateArrayInitializer_initialValues_InclusiveOrExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_InstanceOfExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_MethodCall.gif │ │ │ ├── CreateArrayInitializer_initialValues_MultiplicativeExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_NestedExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_NewConstructorCall.gif │ │ │ ├── CreateArrayInitializer_initialValues_NullLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_OctalIntegerLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_OctalLongLiteral.gif │ │ │ ├── CreateArrayInitializer_initialValues_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_PrimitiveTypeReference.gif │ │ │ ├── CreateArrayInitializer_initialValues_ReflectiveClassReference.gif │ │ │ ├── CreateArrayInitializer_initialValues_RelationExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_SelfReference.gif │ │ │ ├── CreateArrayInitializer_initialValues_ShiftExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_StringReference.gif │ │ │ ├── CreateArrayInitializer_initialValues_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateArrayInitializer_initialValues_UnaryExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_AdditiveExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_AndExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_AnnotationInstance.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ArrayInstantiationBySize.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_AssignmentExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_BooleanLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_CastExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_CharacterLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ConditionalAndExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ConditionalExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ConditionalOrExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_DecimalDoubleLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_DecimalFloatLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_DecimalIntegerLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_DecimalLongLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_EqualityExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ExclusiveOrExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ExplicitConstructorCall.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_HexDoubleLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_HexFloatLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_HexIntegerLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_HexLongLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_IdentifierReference.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_InclusiveOrExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_InstanceOfExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_MethodCall.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_MultiplicativeExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_NestedExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_NewConstructorCall.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_NullLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_OctalIntegerLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_OctalLongLiteral.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_PrimitiveTypeReference.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ReflectiveClassReference.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_RelationExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_SelfReference.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_ShiftExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_StringReference.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateArrayInstantiationBySize_sizes_UnaryExpression.gif │ │ │ ├── CreateArrayInstantiationByValues_arrayInitializer_ArrayInitializer.gif │ │ │ ├── CreateArraySelector_position_AdditiveExpression.gif │ │ │ ├── CreateArraySelector_position_AndExpression.gif │ │ │ ├── CreateArraySelector_position_AnnotationInstance.gif │ │ │ ├── CreateArraySelector_position_ArrayInstantiationBySize.gif │ │ │ ├── CreateArraySelector_position_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateArraySelector_position_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateArraySelector_position_AssignmentExpression.gif │ │ │ ├── CreateArraySelector_position_BooleanLiteral.gif │ │ │ ├── CreateArraySelector_position_CastExpression.gif │ │ │ ├── CreateArraySelector_position_CharacterLiteral.gif │ │ │ ├── CreateArraySelector_position_ConditionalAndExpression.gif │ │ │ ├── CreateArraySelector_position_ConditionalExpression.gif │ │ │ ├── CreateArraySelector_position_ConditionalOrExpression.gif │ │ │ ├── CreateArraySelector_position_DecimalDoubleLiteral.gif │ │ │ ├── CreateArraySelector_position_DecimalFloatLiteral.gif │ │ │ ├── CreateArraySelector_position_DecimalIntegerLiteral.gif │ │ │ ├── CreateArraySelector_position_DecimalLongLiteral.gif │ │ │ ├── CreateArraySelector_position_EqualityExpression.gif │ │ │ ├── CreateArraySelector_position_ExclusiveOrExpression.gif │ │ │ ├── CreateArraySelector_position_ExplicitConstructorCall.gif │ │ │ ├── CreateArraySelector_position_HexDoubleLiteral.gif │ │ │ ├── CreateArraySelector_position_HexFloatLiteral.gif │ │ │ ├── CreateArraySelector_position_HexIntegerLiteral.gif │ │ │ ├── CreateArraySelector_position_HexLongLiteral.gif │ │ │ ├── CreateArraySelector_position_IdentifierReference.gif │ │ │ ├── CreateArraySelector_position_InclusiveOrExpression.gif │ │ │ ├── CreateArraySelector_position_InstanceOfExpression.gif │ │ │ ├── CreateArraySelector_position_MethodCall.gif │ │ │ ├── CreateArraySelector_position_MultiplicativeExpression.gif │ │ │ ├── CreateArraySelector_position_NestedExpression.gif │ │ │ ├── CreateArraySelector_position_NewConstructorCall.gif │ │ │ ├── CreateArraySelector_position_NullLiteral.gif │ │ │ ├── CreateArraySelector_position_OctalIntegerLiteral.gif │ │ │ ├── CreateArraySelector_position_OctalLongLiteral.gif │ │ │ ├── CreateArraySelector_position_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateArraySelector_position_PrimitiveTypeReference.gif │ │ │ ├── CreateArraySelector_position_ReflectiveClassReference.gif │ │ │ ├── CreateArraySelector_position_RelationExpression.gif │ │ │ ├── CreateArraySelector_position_SelfReference.gif │ │ │ ├── CreateArraySelector_position_ShiftExpression.gif │ │ │ ├── CreateArraySelector_position_StringReference.gif │ │ │ ├── CreateArraySelector_position_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateArraySelector_position_UnaryExpression.gif │ │ │ ├── CreateArrayTypeable_arrayDimensionsAfter_ArrayDimension.gif │ │ │ ├── CreateArrayTypeable_arrayDimensionsBefore_ArrayDimension.gif │ │ │ ├── CreateAssert_errorMessage_AdditiveExpression.gif │ │ │ ├── CreateAssert_errorMessage_AndExpression.gif │ │ │ ├── CreateAssert_errorMessage_AnnotationInstance.gif │ │ │ ├── CreateAssert_errorMessage_ArrayInstantiationBySize.gif │ │ │ ├── CreateAssert_errorMessage_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateAssert_errorMessage_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateAssert_errorMessage_AssignmentExpression.gif │ │ │ ├── CreateAssert_errorMessage_BooleanLiteral.gif │ │ │ ├── CreateAssert_errorMessage_CastExpression.gif │ │ │ ├── CreateAssert_errorMessage_CharacterLiteral.gif │ │ │ ├── CreateAssert_errorMessage_ConditionalAndExpression.gif │ │ │ ├── CreateAssert_errorMessage_ConditionalExpression.gif │ │ │ ├── CreateAssert_errorMessage_ConditionalOrExpression.gif │ │ │ ├── CreateAssert_errorMessage_DecimalDoubleLiteral.gif │ │ │ ├── CreateAssert_errorMessage_DecimalFloatLiteral.gif │ │ │ ├── CreateAssert_errorMessage_DecimalIntegerLiteral.gif │ │ │ ├── CreateAssert_errorMessage_DecimalLongLiteral.gif │ │ │ ├── CreateAssert_errorMessage_EqualityExpression.gif │ │ │ ├── CreateAssert_errorMessage_ExclusiveOrExpression.gif │ │ │ ├── CreateAssert_errorMessage_ExplicitConstructorCall.gif │ │ │ ├── CreateAssert_errorMessage_HexDoubleLiteral.gif │ │ │ ├── CreateAssert_errorMessage_HexFloatLiteral.gif │ │ │ ├── CreateAssert_errorMessage_HexIntegerLiteral.gif │ │ │ ├── CreateAssert_errorMessage_HexLongLiteral.gif │ │ │ ├── CreateAssert_errorMessage_IdentifierReference.gif │ │ │ ├── CreateAssert_errorMessage_InclusiveOrExpression.gif │ │ │ ├── CreateAssert_errorMessage_InstanceOfExpression.gif │ │ │ ├── CreateAssert_errorMessage_MethodCall.gif │ │ │ ├── CreateAssert_errorMessage_MultiplicativeExpression.gif │ │ │ ├── CreateAssert_errorMessage_NestedExpression.gif │ │ │ ├── CreateAssert_errorMessage_NewConstructorCall.gif │ │ │ ├── CreateAssert_errorMessage_NullLiteral.gif │ │ │ ├── CreateAssert_errorMessage_OctalIntegerLiteral.gif │ │ │ ├── CreateAssert_errorMessage_OctalLongLiteral.gif │ │ │ ├── CreateAssert_errorMessage_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateAssert_errorMessage_PrimitiveTypeReference.gif │ │ │ ├── CreateAssert_errorMessage_ReflectiveClassReference.gif │ │ │ ├── CreateAssert_errorMessage_RelationExpression.gif │ │ │ ├── CreateAssert_errorMessage_SelfReference.gif │ │ │ ├── CreateAssert_errorMessage_ShiftExpression.gif │ │ │ ├── CreateAssert_errorMessage_StringReference.gif │ │ │ ├── CreateAssert_errorMessage_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateAssert_errorMessage_UnaryExpression.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_Assignment.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentAnd.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentDivision.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentExclusiveOr.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentLeftShift.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentMinus.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentModulo.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentMultiplication.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentOr.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentPlus.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentRightShift.gif │ │ │ ├── CreateAssignmentExpression_assignmentOperator_AssignmentUnsignedRightShift.gif │ │ │ ├── CreateAssignmentExpression_child_AdditiveExpression.gif │ │ │ ├── CreateAssignmentExpression_child_AndExpression.gif │ │ │ ├── CreateAssignmentExpression_child_AnnotationInstance.gif │ │ │ ├── CreateAssignmentExpression_child_ArrayInstantiationBySize.gif │ │ │ ├── CreateAssignmentExpression_child_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateAssignmentExpression_child_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateAssignmentExpression_child_BooleanLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_CastExpression.gif │ │ │ ├── CreateAssignmentExpression_child_CharacterLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_ConditionalAndExpression.gif │ │ │ ├── CreateAssignmentExpression_child_ConditionalExpression.gif │ │ │ ├── CreateAssignmentExpression_child_ConditionalOrExpression.gif │ │ │ ├── CreateAssignmentExpression_child_DecimalDoubleLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_DecimalFloatLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_DecimalIntegerLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_DecimalLongLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_EqualityExpression.gif │ │ │ ├── CreateAssignmentExpression_child_ExclusiveOrExpression.gif │ │ │ ├── CreateAssignmentExpression_child_ExplicitConstructorCall.gif │ │ │ ├── CreateAssignmentExpression_child_HexDoubleLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_HexFloatLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_HexIntegerLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_HexLongLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_IdentifierReference.gif │ │ │ ├── CreateAssignmentExpression_child_InclusiveOrExpression.gif │ │ │ ├── CreateAssignmentExpression_child_InstanceOfExpression.gif │ │ │ ├── CreateAssignmentExpression_child_MethodCall.gif │ │ │ ├── CreateAssignmentExpression_child_MultiplicativeExpression.gif │ │ │ ├── CreateAssignmentExpression_child_NestedExpression.gif │ │ │ ├── CreateAssignmentExpression_child_NewConstructorCall.gif │ │ │ ├── CreateAssignmentExpression_child_NullLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_OctalIntegerLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_OctalLongLiteral.gif │ │ │ ├── CreateAssignmentExpression_child_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateAssignmentExpression_child_PrimitiveTypeReference.gif │ │ │ ├── CreateAssignmentExpression_child_ReflectiveClassReference.gif │ │ │ ├── CreateAssignmentExpression_child_RelationExpression.gif │ │ │ ├── CreateAssignmentExpression_child_SelfReference.gif │ │ │ ├── CreateAssignmentExpression_child_ShiftExpression.gif │ │ │ ├── CreateAssignmentExpression_child_StringReference.gif │ │ │ ├── CreateAssignmentExpression_child_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateAssignmentExpression_child_UnaryExpression.gif │ │ │ ├── CreateAssignmentExpression_value_AdditiveExpression.gif │ │ │ ├── CreateAssignmentExpression_value_AndExpression.gif │ │ │ ├── CreateAssignmentExpression_value_AnnotationInstance.gif │ │ │ ├── CreateAssignmentExpression_value_ArrayInstantiationBySize.gif │ │ │ ├── CreateAssignmentExpression_value_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateAssignmentExpression_value_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateAssignmentExpression_value_AssignmentExpression.gif │ │ │ ├── CreateAssignmentExpression_value_BooleanLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_CastExpression.gif │ │ │ ├── CreateAssignmentExpression_value_CharacterLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_ConditionalAndExpression.gif │ │ │ ├── CreateAssignmentExpression_value_ConditionalExpression.gif │ │ │ ├── CreateAssignmentExpression_value_ConditionalOrExpression.gif │ │ │ ├── CreateAssignmentExpression_value_DecimalDoubleLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_DecimalFloatLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_DecimalIntegerLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_DecimalLongLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_EqualityExpression.gif │ │ │ ├── CreateAssignmentExpression_value_ExclusiveOrExpression.gif │ │ │ ├── CreateAssignmentExpression_value_ExplicitConstructorCall.gif │ │ │ ├── CreateAssignmentExpression_value_HexDoubleLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_HexFloatLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_HexIntegerLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_HexLongLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_IdentifierReference.gif │ │ │ ├── CreateAssignmentExpression_value_InclusiveOrExpression.gif │ │ │ ├── CreateAssignmentExpression_value_InstanceOfExpression.gif │ │ │ ├── CreateAssignmentExpression_value_MethodCall.gif │ │ │ ├── CreateAssignmentExpression_value_MultiplicativeExpression.gif │ │ │ ├── CreateAssignmentExpression_value_NestedExpression.gif │ │ │ ├── CreateAssignmentExpression_value_NewConstructorCall.gif │ │ │ ├── CreateAssignmentExpression_value_NullLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_OctalIntegerLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_OctalLongLiteral.gif │ │ │ ├── CreateAssignmentExpression_value_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateAssignmentExpression_value_PrimitiveTypeReference.gif │ │ │ ├── CreateAssignmentExpression_value_ReflectiveClassReference.gif │ │ │ ├── CreateAssignmentExpression_value_RelationExpression.gif │ │ │ ├── CreateAssignmentExpression_value_SelfReference.gif │ │ │ ├── CreateAssignmentExpression_value_ShiftExpression.gif │ │ │ ├── CreateAssignmentExpression_value_StringReference.gif │ │ │ ├── CreateAssignmentExpression_value_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateAssignmentExpression_value_UnaryExpression.gif │ │ │ ├── CreateCallTypeArgumentable_callTypeArguments_ExtendsTypeArgument.gif │ │ │ ├── CreateCallTypeArgumentable_callTypeArguments_QualifiedTypeArgument.gif │ │ │ ├── CreateCallTypeArgumentable_callTypeArguments_SuperTypeArgument.gif │ │ │ ├── CreateCallTypeArgumentable_callTypeArguments_UnknownTypeArgument.gif │ │ │ ├── CreateCastExpression_child_AnnotationInstance.gif │ │ │ ├── CreateCastExpression_child_ArrayInstantiationBySize.gif │ │ │ ├── CreateCastExpression_child_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateCastExpression_child_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateCastExpression_child_BooleanLiteral.gif │ │ │ ├── CreateCastExpression_child_CastExpression.gif │ │ │ ├── CreateCastExpression_child_CharacterLiteral.gif │ │ │ ├── CreateCastExpression_child_DecimalDoubleLiteral.gif │ │ │ ├── CreateCastExpression_child_DecimalFloatLiteral.gif │ │ │ ├── CreateCastExpression_child_DecimalIntegerLiteral.gif │ │ │ ├── CreateCastExpression_child_DecimalLongLiteral.gif │ │ │ ├── CreateCastExpression_child_ExplicitConstructorCall.gif │ │ │ ├── CreateCastExpression_child_HexDoubleLiteral.gif │ │ │ ├── CreateCastExpression_child_HexFloatLiteral.gif │ │ │ ├── CreateCastExpression_child_HexIntegerLiteral.gif │ │ │ ├── CreateCastExpression_child_HexLongLiteral.gif │ │ │ ├── CreateCastExpression_child_IdentifierReference.gif │ │ │ ├── CreateCastExpression_child_MethodCall.gif │ │ │ ├── CreateCastExpression_child_NestedExpression.gif │ │ │ ├── CreateCastExpression_child_NewConstructorCall.gif │ │ │ ├── CreateCastExpression_child_NullLiteral.gif │ │ │ ├── CreateCastExpression_child_OctalIntegerLiteral.gif │ │ │ ├── CreateCastExpression_child_OctalLongLiteral.gif │ │ │ ├── CreateCastExpression_child_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateCastExpression_child_PrimitiveTypeReference.gif │ │ │ ├── CreateCastExpression_child_ReflectiveClassReference.gif │ │ │ ├── CreateCastExpression_child_SelfReference.gif │ │ │ ├── CreateCastExpression_child_StringReference.gif │ │ │ ├── CreateCastExpression_child_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateCastExpression_child_UnaryExpression.gif │ │ │ ├── CreateCatchBlock_parameter_OrdinaryParameter.gif │ │ │ ├── CreateClass_extends_Boolean.gif │ │ │ ├── CreateClass_extends_Byte.gif │ │ │ ├── CreateClass_extends_Char.gif │ │ │ ├── CreateClass_extends_ClassifierReference.gif │ │ │ ├── CreateClass_extends_Double.gif │ │ │ ├── CreateClass_extends_Float.gif │ │ │ ├── CreateClass_extends_Int.gif │ │ │ ├── CreateClass_extends_Long.gif │ │ │ ├── CreateClass_extends_NamespaceClassifierReference.gif │ │ │ ├── CreateClass_extends_Short.gif │ │ │ ├── CreateClass_extends_Void.gif │ │ │ ├── CreateCommentable_layoutInformations_AttributeLayoutInformation.gif │ │ │ ├── CreateCommentable_layoutInformations_KeywordLayoutInformation.gif │ │ │ ├── CreateCommentable_layoutInformations_LayoutInformation.gif │ │ │ ├── CreateCommentable_layoutInformations_ReferenceLayoutInformation.gif │ │ │ ├── CreateCompilationUnit_classifiers_Annotation.gif │ │ │ ├── CreateCompilationUnit_classifiers_Class.gif │ │ │ ├── CreateCompilationUnit_classifiers_Enumeration.gif │ │ │ ├── CreateCompilationUnit_classifiers_Interface.gif │ │ │ ├── CreateCondition_elseStatement_Annotation.gif │ │ │ ├── CreateCondition_elseStatement_Assert.gif │ │ │ ├── CreateCondition_elseStatement_Block.gif │ │ │ ├── CreateCondition_elseStatement_Break.gif │ │ │ ├── CreateCondition_elseStatement_Class.gif │ │ │ ├── CreateCondition_elseStatement_Condition.gif │ │ │ ├── CreateCondition_elseStatement_Continue.gif │ │ │ ├── CreateCondition_elseStatement_DoWhileLoop.gif │ │ │ ├── CreateCondition_elseStatement_EmptyStatement.gif │ │ │ ├── CreateCondition_elseStatement_Enumeration.gif │ │ │ ├── CreateCondition_elseStatement_ExpressionStatement.gif │ │ │ ├── CreateCondition_elseStatement_ForEachLoop.gif │ │ │ ├── CreateCondition_elseStatement_ForLoop.gif │ │ │ ├── CreateCondition_elseStatement_Interface.gif │ │ │ ├── CreateCondition_elseStatement_JumpLabel.gif │ │ │ ├── CreateCondition_elseStatement_LocalVariableStatement.gif │ │ │ ├── CreateCondition_elseStatement_Return.gif │ │ │ ├── CreateCondition_elseStatement_Switch.gif │ │ │ ├── CreateCondition_elseStatement_SynchronizedBlock.gif │ │ │ ├── CreateCondition_elseStatement_Throw.gif │ │ │ ├── CreateCondition_elseStatement_TryBlock.gif │ │ │ ├── CreateCondition_elseStatement_WhileLoop.gif │ │ │ ├── CreateConditionalAndExpression_children_AdditiveExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_AndExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_AnnotationInstance.gif │ │ │ ├── CreateConditionalAndExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateConditionalAndExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateConditionalAndExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateConditionalAndExpression_children_BooleanLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_CastExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_CharacterLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_EqualityExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_ExclusiveOrExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateConditionalAndExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_HexLongLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_IdentifierReference.gif │ │ │ ├── CreateConditionalAndExpression_children_InclusiveOrExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_InstanceOfExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_MethodCall.gif │ │ │ ├── CreateConditionalAndExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_NestedExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_NewConstructorCall.gif │ │ │ ├── CreateConditionalAndExpression_children_NullLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateConditionalAndExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateConditionalAndExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateConditionalAndExpression_children_RelationExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_SelfReference.gif │ │ │ ├── CreateConditionalAndExpression_children_ShiftExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_StringReference.gif │ │ │ ├── CreateConditionalAndExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalAndExpression_children_UnaryExpression.gif │ │ │ ├── CreateConditionalExpression_child_AdditiveExpression.gif │ │ │ ├── CreateConditionalExpression_child_AndExpression.gif │ │ │ ├── CreateConditionalExpression_child_AnnotationInstance.gif │ │ │ ├── CreateConditionalExpression_child_ArrayInstantiationBySize.gif │ │ │ ├── CreateConditionalExpression_child_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateConditionalExpression_child_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateConditionalExpression_child_BooleanLiteral.gif │ │ │ ├── CreateConditionalExpression_child_CastExpression.gif │ │ │ ├── CreateConditionalExpression_child_CharacterLiteral.gif │ │ │ ├── CreateConditionalExpression_child_ConditionalAndExpression.gif │ │ │ ├── CreateConditionalExpression_child_ConditionalOrExpression.gif │ │ │ ├── CreateConditionalExpression_child_DecimalDoubleLiteral.gif │ │ │ ├── CreateConditionalExpression_child_DecimalFloatLiteral.gif │ │ │ ├── CreateConditionalExpression_child_DecimalIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_child_DecimalLongLiteral.gif │ │ │ ├── CreateConditionalExpression_child_EqualityExpression.gif │ │ │ ├── CreateConditionalExpression_child_ExclusiveOrExpression.gif │ │ │ ├── CreateConditionalExpression_child_ExplicitConstructorCall.gif │ │ │ ├── CreateConditionalExpression_child_HexDoubleLiteral.gif │ │ │ ├── CreateConditionalExpression_child_HexFloatLiteral.gif │ │ │ ├── CreateConditionalExpression_child_HexIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_child_HexLongLiteral.gif │ │ │ ├── CreateConditionalExpression_child_IdentifierReference.gif │ │ │ ├── CreateConditionalExpression_child_InclusiveOrExpression.gif │ │ │ ├── CreateConditionalExpression_child_InstanceOfExpression.gif │ │ │ ├── CreateConditionalExpression_child_MethodCall.gif │ │ │ ├── CreateConditionalExpression_child_MultiplicativeExpression.gif │ │ │ ├── CreateConditionalExpression_child_NestedExpression.gif │ │ │ ├── CreateConditionalExpression_child_NewConstructorCall.gif │ │ │ ├── CreateConditionalExpression_child_NullLiteral.gif │ │ │ ├── CreateConditionalExpression_child_OctalIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_child_OctalLongLiteral.gif │ │ │ ├── CreateConditionalExpression_child_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalExpression_child_PrimitiveTypeReference.gif │ │ │ ├── CreateConditionalExpression_child_ReflectiveClassReference.gif │ │ │ ├── CreateConditionalExpression_child_RelationExpression.gif │ │ │ ├── CreateConditionalExpression_child_SelfReference.gif │ │ │ ├── CreateConditionalExpression_child_ShiftExpression.gif │ │ │ ├── CreateConditionalExpression_child_StringReference.gif │ │ │ ├── CreateConditionalExpression_child_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalExpression_child_UnaryExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_AdditiveExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_AndExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_AnnotationInstance.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ArrayInstantiationBySize.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateConditionalExpression_expressionElse_BooleanLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_CastExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_CharacterLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ConditionalAndExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ConditionalExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ConditionalOrExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_DecimalDoubleLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_DecimalFloatLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_DecimalIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_DecimalLongLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_EqualityExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ExclusiveOrExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ExplicitConstructorCall.gif │ │ │ ├── CreateConditionalExpression_expressionElse_HexDoubleLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_HexFloatLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_HexIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_HexLongLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_IdentifierReference.gif │ │ │ ├── CreateConditionalExpression_expressionElse_InclusiveOrExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_InstanceOfExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_MethodCall.gif │ │ │ ├── CreateConditionalExpression_expressionElse_MultiplicativeExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_NestedExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_NewConstructorCall.gif │ │ │ ├── CreateConditionalExpression_expressionElse_NullLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_OctalIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_OctalLongLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionElse_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_PrimitiveTypeReference.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ReflectiveClassReference.gif │ │ │ ├── CreateConditionalExpression_expressionElse_RelationExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_SelfReference.gif │ │ │ ├── CreateConditionalExpression_expressionElse_ShiftExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_StringReference.gif │ │ │ ├── CreateConditionalExpression_expressionElse_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalExpression_expressionElse_UnaryExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_AdditiveExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_AndExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_AnnotationInstance.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ArrayInstantiationBySize.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateConditionalExpression_expressionIf_AssignmentExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_BooleanLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_CastExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_CharacterLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ConditionalAndExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ConditionalExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ConditionalOrExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_DecimalDoubleLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_DecimalFloatLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_DecimalIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_DecimalLongLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_EqualityExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ExclusiveOrExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ExplicitConstructorCall.gif │ │ │ ├── CreateConditionalExpression_expressionIf_HexDoubleLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_HexFloatLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_HexIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_HexLongLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_IdentifierReference.gif │ │ │ ├── CreateConditionalExpression_expressionIf_InclusiveOrExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_InstanceOfExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_MethodCall.gif │ │ │ ├── CreateConditionalExpression_expressionIf_MultiplicativeExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_NestedExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_NewConstructorCall.gif │ │ │ ├── CreateConditionalExpression_expressionIf_NullLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_OctalIntegerLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_OctalLongLiteral.gif │ │ │ ├── CreateConditionalExpression_expressionIf_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_PrimitiveTypeReference.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ReflectiveClassReference.gif │ │ │ ├── CreateConditionalExpression_expressionIf_RelationExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_SelfReference.gif │ │ │ ├── CreateConditionalExpression_expressionIf_ShiftExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_StringReference.gif │ │ │ ├── CreateConditionalExpression_expressionIf_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalExpression_expressionIf_UnaryExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_AdditiveExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_AndExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_AnnotationInstance.gif │ │ │ ├── CreateConditionalOrExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateConditionalOrExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateConditionalOrExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateConditionalOrExpression_children_BooleanLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_CastExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_CharacterLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_ConditionalAndExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_EqualityExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_ExclusiveOrExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateConditionalOrExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_HexLongLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_IdentifierReference.gif │ │ │ ├── CreateConditionalOrExpression_children_InclusiveOrExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_InstanceOfExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_MethodCall.gif │ │ │ ├── CreateConditionalOrExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_NestedExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_NewConstructorCall.gif │ │ │ ├── CreateConditionalOrExpression_children_NullLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateConditionalOrExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateConditionalOrExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateConditionalOrExpression_children_RelationExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_SelfReference.gif │ │ │ ├── CreateConditionalOrExpression_children_ShiftExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_StringReference.gif │ │ │ ├── CreateConditionalOrExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateConditionalOrExpression_children_UnaryExpression.gif │ │ │ ├── CreateConditional_condition_AdditiveExpression.gif │ │ │ ├── CreateConditional_condition_AndExpression.gif │ │ │ ├── CreateConditional_condition_AnnotationInstance.gif │ │ │ ├── CreateConditional_condition_ArrayInstantiationBySize.gif │ │ │ ├── CreateConditional_condition_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateConditional_condition_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateConditional_condition_AssignmentExpression.gif │ │ │ ├── CreateConditional_condition_BooleanLiteral.gif │ │ │ ├── CreateConditional_condition_CastExpression.gif │ │ │ ├── CreateConditional_condition_CharacterLiteral.gif │ │ │ ├── CreateConditional_condition_ConditionalAndExpression.gif │ │ │ ├── CreateConditional_condition_ConditionalExpression.gif │ │ │ ├── CreateConditional_condition_ConditionalOrExpression.gif │ │ │ ├── CreateConditional_condition_DecimalDoubleLiteral.gif │ │ │ ├── CreateConditional_condition_DecimalFloatLiteral.gif │ │ │ ├── CreateConditional_condition_DecimalIntegerLiteral.gif │ │ │ ├── CreateConditional_condition_DecimalLongLiteral.gif │ │ │ ├── CreateConditional_condition_EqualityExpression.gif │ │ │ ├── CreateConditional_condition_ExclusiveOrExpression.gif │ │ │ ├── CreateConditional_condition_ExplicitConstructorCall.gif │ │ │ ├── CreateConditional_condition_HexDoubleLiteral.gif │ │ │ ├── CreateConditional_condition_HexFloatLiteral.gif │ │ │ ├── CreateConditional_condition_HexIntegerLiteral.gif │ │ │ ├── CreateConditional_condition_HexLongLiteral.gif │ │ │ ├── CreateConditional_condition_IdentifierReference.gif │ │ │ ├── CreateConditional_condition_InclusiveOrExpression.gif │ │ │ ├── CreateConditional_condition_InstanceOfExpression.gif │ │ │ ├── CreateConditional_condition_MethodCall.gif │ │ │ ├── CreateConditional_condition_MultiplicativeExpression.gif │ │ │ ├── CreateConditional_condition_NestedExpression.gif │ │ │ ├── CreateConditional_condition_NewConstructorCall.gif │ │ │ ├── CreateConditional_condition_NullLiteral.gif │ │ │ ├── CreateConditional_condition_OctalIntegerLiteral.gif │ │ │ ├── CreateConditional_condition_OctalLongLiteral.gif │ │ │ ├── CreateConditional_condition_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateConditional_condition_PrimitiveTypeReference.gif │ │ │ ├── CreateConditional_condition_ReflectiveClassReference.gif │ │ │ ├── CreateConditional_condition_RelationExpression.gif │ │ │ ├── CreateConditional_condition_SelfReference.gif │ │ │ ├── CreateConditional_condition_ShiftExpression.gif │ │ │ ├── CreateConditional_condition_StringReference.gif │ │ │ ├── CreateConditional_condition_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateConditional_condition_UnaryExpression.gif │ │ │ ├── CreateEnumConstant_anonymousClass_AnonymousClass.gif │ │ │ ├── CreateEnumeration_constants_EnumConstant.gif │ │ │ ├── CreateEqualityExpression_children_AdditiveExpression.gif │ │ │ ├── CreateEqualityExpression_children_AnnotationInstance.gif │ │ │ ├── CreateEqualityExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateEqualityExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateEqualityExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateEqualityExpression_children_BooleanLiteral.gif │ │ │ ├── CreateEqualityExpression_children_CastExpression.gif │ │ │ ├── CreateEqualityExpression_children_CharacterLiteral.gif │ │ │ ├── CreateEqualityExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateEqualityExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateEqualityExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateEqualityExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateEqualityExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateEqualityExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateEqualityExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateEqualityExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateEqualityExpression_children_HexLongLiteral.gif │ │ │ ├── CreateEqualityExpression_children_IdentifierReference.gif │ │ │ ├── CreateEqualityExpression_children_InstanceOfExpression.gif │ │ │ ├── CreateEqualityExpression_children_MethodCall.gif │ │ │ ├── CreateEqualityExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateEqualityExpression_children_NestedExpression.gif │ │ │ ├── CreateEqualityExpression_children_NewConstructorCall.gif │ │ │ ├── CreateEqualityExpression_children_NullLiteral.gif │ │ │ ├── CreateEqualityExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateEqualityExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateEqualityExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateEqualityExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateEqualityExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateEqualityExpression_children_RelationExpression.gif │ │ │ ├── CreateEqualityExpression_children_SelfReference.gif │ │ │ ├── CreateEqualityExpression_children_ShiftExpression.gif │ │ │ ├── CreateEqualityExpression_children_StringReference.gif │ │ │ ├── CreateEqualityExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateEqualityExpression_children_UnaryExpression.gif │ │ │ ├── CreateEqualityExpression_equalityOperators_Equal.gif │ │ │ ├── CreateEqualityExpression_equalityOperators_NotEqual.gif │ │ │ ├── CreateExceptionThrower_exceptions_NamespaceClassifierReference.gif │ │ │ ├── CreateExclusiveOrExpression_children_AdditiveExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_AndExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_AnnotationInstance.gif │ │ │ ├── CreateExclusiveOrExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateExclusiveOrExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateExclusiveOrExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateExclusiveOrExpression_children_BooleanLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_CastExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_CharacterLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_EqualityExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateExclusiveOrExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_HexLongLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_IdentifierReference.gif │ │ │ ├── CreateExclusiveOrExpression_children_InstanceOfExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_MethodCall.gif │ │ │ ├── CreateExclusiveOrExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_NestedExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_NewConstructorCall.gif │ │ │ ├── CreateExclusiveOrExpression_children_NullLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateExclusiveOrExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateExclusiveOrExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateExclusiveOrExpression_children_RelationExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_SelfReference.gif │ │ │ ├── CreateExclusiveOrExpression_children_ShiftExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_StringReference.gif │ │ │ ├── CreateExclusiveOrExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateExclusiveOrExpression_children_UnaryExpression.gif │ │ │ ├── CreateExplicitConstructorCall_callTarget_Super.gif │ │ │ ├── CreateExplicitConstructorCall_callTarget_This.gif │ │ │ ├── CreateExpressionList_expressions_AdditiveExpression.gif │ │ │ ├── CreateExpressionList_expressions_AndExpression.gif │ │ │ ├── CreateExpressionList_expressions_AnnotationInstance.gif │ │ │ ├── CreateExpressionList_expressions_ArrayInstantiationBySize.gif │ │ │ ├── CreateExpressionList_expressions_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateExpressionList_expressions_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateExpressionList_expressions_AssignmentExpression.gif │ │ │ ├── CreateExpressionList_expressions_BooleanLiteral.gif │ │ │ ├── CreateExpressionList_expressions_CastExpression.gif │ │ │ ├── CreateExpressionList_expressions_CharacterLiteral.gif │ │ │ ├── CreateExpressionList_expressions_ConditionalAndExpression.gif │ │ │ ├── CreateExpressionList_expressions_ConditionalExpression.gif │ │ │ ├── CreateExpressionList_expressions_ConditionalOrExpression.gif │ │ │ ├── CreateExpressionList_expressions_DecimalDoubleLiteral.gif │ │ │ ├── CreateExpressionList_expressions_DecimalFloatLiteral.gif │ │ │ ├── CreateExpressionList_expressions_DecimalIntegerLiteral.gif │ │ │ ├── CreateExpressionList_expressions_DecimalLongLiteral.gif │ │ │ ├── CreateExpressionList_expressions_EqualityExpression.gif │ │ │ ├── CreateExpressionList_expressions_ExclusiveOrExpression.gif │ │ │ ├── CreateExpressionList_expressions_ExplicitConstructorCall.gif │ │ │ ├── CreateExpressionList_expressions_HexDoubleLiteral.gif │ │ │ ├── CreateExpressionList_expressions_HexFloatLiteral.gif │ │ │ ├── CreateExpressionList_expressions_HexIntegerLiteral.gif │ │ │ ├── CreateExpressionList_expressions_HexLongLiteral.gif │ │ │ ├── CreateExpressionList_expressions_IdentifierReference.gif │ │ │ ├── CreateExpressionList_expressions_InclusiveOrExpression.gif │ │ │ ├── CreateExpressionList_expressions_InstanceOfExpression.gif │ │ │ ├── CreateExpressionList_expressions_MethodCall.gif │ │ │ ├── CreateExpressionList_expressions_MultiplicativeExpression.gif │ │ │ ├── CreateExpressionList_expressions_NestedExpression.gif │ │ │ ├── CreateExpressionList_expressions_NewConstructorCall.gif │ │ │ ├── CreateExpressionList_expressions_NullLiteral.gif │ │ │ ├── CreateExpressionList_expressions_OctalIntegerLiteral.gif │ │ │ ├── CreateExpressionList_expressions_OctalLongLiteral.gif │ │ │ ├── CreateExpressionList_expressions_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateExpressionList_expressions_PrimitiveTypeReference.gif │ │ │ ├── CreateExpressionList_expressions_ReflectiveClassReference.gif │ │ │ ├── CreateExpressionList_expressions_RelationExpression.gif │ │ │ ├── CreateExpressionList_expressions_SelfReference.gif │ │ │ ├── CreateExpressionList_expressions_ShiftExpression.gif │ │ │ ├── CreateExpressionList_expressions_StringReference.gif │ │ │ ├── CreateExpressionList_expressions_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateExpressionList_expressions_UnaryExpression.gif │ │ │ ├── CreateExpressionStatement_expression_AdditiveExpression.gif │ │ │ ├── CreateExpressionStatement_expression_AndExpression.gif │ │ │ ├── CreateExpressionStatement_expression_AnnotationInstance.gif │ │ │ ├── CreateExpressionStatement_expression_ArrayInstantiationBySize.gif │ │ │ ├── CreateExpressionStatement_expression_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateExpressionStatement_expression_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateExpressionStatement_expression_AssignmentExpression.gif │ │ │ ├── CreateExpressionStatement_expression_BooleanLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_CastExpression.gif │ │ │ ├── CreateExpressionStatement_expression_CharacterLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_ConditionalAndExpression.gif │ │ │ ├── CreateExpressionStatement_expression_ConditionalExpression.gif │ │ │ ├── CreateExpressionStatement_expression_ConditionalOrExpression.gif │ │ │ ├── CreateExpressionStatement_expression_DecimalDoubleLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_DecimalFloatLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_DecimalIntegerLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_DecimalLongLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_EqualityExpression.gif │ │ │ ├── CreateExpressionStatement_expression_ExclusiveOrExpression.gif │ │ │ ├── CreateExpressionStatement_expression_ExplicitConstructorCall.gif │ │ │ ├── CreateExpressionStatement_expression_HexDoubleLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_HexFloatLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_HexIntegerLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_HexLongLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_IdentifierReference.gif │ │ │ ├── CreateExpressionStatement_expression_InclusiveOrExpression.gif │ │ │ ├── CreateExpressionStatement_expression_InstanceOfExpression.gif │ │ │ ├── CreateExpressionStatement_expression_MethodCall.gif │ │ │ ├── CreateExpressionStatement_expression_MultiplicativeExpression.gif │ │ │ ├── CreateExpressionStatement_expression_NestedExpression.gif │ │ │ ├── CreateExpressionStatement_expression_NewConstructorCall.gif │ │ │ ├── CreateExpressionStatement_expression_NullLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_OctalIntegerLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_OctalLongLiteral.gif │ │ │ ├── CreateExpressionStatement_expression_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateExpressionStatement_expression_PrimitiveTypeReference.gif │ │ │ ├── CreateExpressionStatement_expression_ReflectiveClassReference.gif │ │ │ ├── CreateExpressionStatement_expression_RelationExpression.gif │ │ │ ├── CreateExpressionStatement_expression_SelfReference.gif │ │ │ ├── CreateExpressionStatement_expression_ShiftExpression.gif │ │ │ ├── CreateExpressionStatement_expression_StringReference.gif │ │ │ ├── CreateExpressionStatement_expression_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateExpressionStatement_expression_UnaryExpression.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Boolean.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Byte.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Char.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_ClassifierReference.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Double.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Float.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Int.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Long.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_NamespaceClassifierReference.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Short.gif │ │ │ ├── CreateExtendsTypeArgument_extendTypes_Void.gif │ │ │ ├── CreateField_additionalFields_AdditionalField.gif │ │ │ ├── CreateForEachLoop_collection_AdditiveExpression.gif │ │ │ ├── CreateForEachLoop_collection_AndExpression.gif │ │ │ ├── CreateForEachLoop_collection_AnnotationInstance.gif │ │ │ ├── CreateForEachLoop_collection_ArrayInstantiationBySize.gif │ │ │ ├── CreateForEachLoop_collection_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateForEachLoop_collection_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateForEachLoop_collection_AssignmentExpression.gif │ │ │ ├── CreateForEachLoop_collection_BooleanLiteral.gif │ │ │ ├── CreateForEachLoop_collection_CastExpression.gif │ │ │ ├── CreateForEachLoop_collection_CharacterLiteral.gif │ │ │ ├── CreateForEachLoop_collection_ConditionalAndExpression.gif │ │ │ ├── CreateForEachLoop_collection_ConditionalExpression.gif │ │ │ ├── CreateForEachLoop_collection_ConditionalOrExpression.gif │ │ │ ├── CreateForEachLoop_collection_DecimalDoubleLiteral.gif │ │ │ ├── CreateForEachLoop_collection_DecimalFloatLiteral.gif │ │ │ ├── CreateForEachLoop_collection_DecimalIntegerLiteral.gif │ │ │ ├── CreateForEachLoop_collection_DecimalLongLiteral.gif │ │ │ ├── CreateForEachLoop_collection_EqualityExpression.gif │ │ │ ├── CreateForEachLoop_collection_ExclusiveOrExpression.gif │ │ │ ├── CreateForEachLoop_collection_ExplicitConstructorCall.gif │ │ │ ├── CreateForEachLoop_collection_HexDoubleLiteral.gif │ │ │ ├── CreateForEachLoop_collection_HexFloatLiteral.gif │ │ │ ├── CreateForEachLoop_collection_HexIntegerLiteral.gif │ │ │ ├── CreateForEachLoop_collection_HexLongLiteral.gif │ │ │ ├── CreateForEachLoop_collection_IdentifierReference.gif │ │ │ ├── CreateForEachLoop_collection_InclusiveOrExpression.gif │ │ │ ├── CreateForEachLoop_collection_InstanceOfExpression.gif │ │ │ ├── CreateForEachLoop_collection_MethodCall.gif │ │ │ ├── CreateForEachLoop_collection_MultiplicativeExpression.gif │ │ │ ├── CreateForEachLoop_collection_NestedExpression.gif │ │ │ ├── CreateForEachLoop_collection_NewConstructorCall.gif │ │ │ ├── CreateForEachLoop_collection_NullLiteral.gif │ │ │ ├── CreateForEachLoop_collection_OctalIntegerLiteral.gif │ │ │ ├── CreateForEachLoop_collection_OctalLongLiteral.gif │ │ │ ├── CreateForEachLoop_collection_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateForEachLoop_collection_PrimitiveTypeReference.gif │ │ │ ├── CreateForEachLoop_collection_ReflectiveClassReference.gif │ │ │ ├── CreateForEachLoop_collection_RelationExpression.gif │ │ │ ├── CreateForEachLoop_collection_SelfReference.gif │ │ │ ├── CreateForEachLoop_collection_ShiftExpression.gif │ │ │ ├── CreateForEachLoop_collection_StringReference.gif │ │ │ ├── CreateForEachLoop_collection_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateForEachLoop_collection_UnaryExpression.gif │ │ │ ├── CreateForEachLoop_next_OrdinaryParameter.gif │ │ │ ├── CreateForLoop_init_ExpressionList.gif │ │ │ ├── CreateForLoop_init_LocalVariable.gif │ │ │ ├── CreateForLoop_updates_AdditiveExpression.gif │ │ │ ├── CreateForLoop_updates_AndExpression.gif │ │ │ ├── CreateForLoop_updates_AnnotationInstance.gif │ │ │ ├── CreateForLoop_updates_ArrayInstantiationBySize.gif │ │ │ ├── CreateForLoop_updates_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateForLoop_updates_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateForLoop_updates_AssignmentExpression.gif │ │ │ ├── CreateForLoop_updates_BooleanLiteral.gif │ │ │ ├── CreateForLoop_updates_CastExpression.gif │ │ │ ├── CreateForLoop_updates_CharacterLiteral.gif │ │ │ ├── CreateForLoop_updates_ConditionalAndExpression.gif │ │ │ ├── CreateForLoop_updates_ConditionalExpression.gif │ │ │ ├── CreateForLoop_updates_ConditionalOrExpression.gif │ │ │ ├── CreateForLoop_updates_DecimalDoubleLiteral.gif │ │ │ ├── CreateForLoop_updates_DecimalFloatLiteral.gif │ │ │ ├── CreateForLoop_updates_DecimalIntegerLiteral.gif │ │ │ ├── CreateForLoop_updates_DecimalLongLiteral.gif │ │ │ ├── CreateForLoop_updates_EqualityExpression.gif │ │ │ ├── CreateForLoop_updates_ExclusiveOrExpression.gif │ │ │ ├── CreateForLoop_updates_ExplicitConstructorCall.gif │ │ │ ├── CreateForLoop_updates_HexDoubleLiteral.gif │ │ │ ├── CreateForLoop_updates_HexFloatLiteral.gif │ │ │ ├── CreateForLoop_updates_HexIntegerLiteral.gif │ │ │ ├── CreateForLoop_updates_HexLongLiteral.gif │ │ │ ├── CreateForLoop_updates_IdentifierReference.gif │ │ │ ├── CreateForLoop_updates_InclusiveOrExpression.gif │ │ │ ├── CreateForLoop_updates_InstanceOfExpression.gif │ │ │ ├── CreateForLoop_updates_MethodCall.gif │ │ │ ├── CreateForLoop_updates_MultiplicativeExpression.gif │ │ │ ├── CreateForLoop_updates_NestedExpression.gif │ │ │ ├── CreateForLoop_updates_NewConstructorCall.gif │ │ │ ├── CreateForLoop_updates_NullLiteral.gif │ │ │ ├── CreateForLoop_updates_OctalIntegerLiteral.gif │ │ │ ├── CreateForLoop_updates_OctalLongLiteral.gif │ │ │ ├── CreateForLoop_updates_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateForLoop_updates_PrimitiveTypeReference.gif │ │ │ ├── CreateForLoop_updates_ReflectiveClassReference.gif │ │ │ ├── CreateForLoop_updates_RelationExpression.gif │ │ │ ├── CreateForLoop_updates_SelfReference.gif │ │ │ ├── CreateForLoop_updates_ShiftExpression.gif │ │ │ ├── CreateForLoop_updates_StringReference.gif │ │ │ ├── CreateForLoop_updates_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateForLoop_updates_UnaryExpression.gif │ │ │ ├── CreateImplementor_implements_Boolean.gif │ │ │ ├── CreateImplementor_implements_Byte.gif │ │ │ ├── CreateImplementor_implements_Char.gif │ │ │ ├── CreateImplementor_implements_ClassifierReference.gif │ │ │ ├── CreateImplementor_implements_Double.gif │ │ │ ├── CreateImplementor_implements_Float.gif │ │ │ ├── CreateImplementor_implements_Int.gif │ │ │ ├── CreateImplementor_implements_Long.gif │ │ │ ├── CreateImplementor_implements_NamespaceClassifierReference.gif │ │ │ ├── CreateImplementor_implements_Short.gif │ │ │ ├── CreateImplementor_implements_Void.gif │ │ │ ├── CreateImportingElement_imports_ClassifierImport.gif │ │ │ ├── CreateImportingElement_imports_PackageImport.gif │ │ │ ├── CreateImportingElement_imports_StaticClassifierImport.gif │ │ │ ├── CreateImportingElement_imports_StaticMemberImport.gif │ │ │ ├── CreateInclusiveOrExpression_children_AdditiveExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_AndExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_AnnotationInstance.gif │ │ │ ├── CreateInclusiveOrExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateInclusiveOrExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateInclusiveOrExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateInclusiveOrExpression_children_BooleanLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_CastExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_CharacterLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_EqualityExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_ExclusiveOrExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateInclusiveOrExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_HexLongLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_IdentifierReference.gif │ │ │ ├── CreateInclusiveOrExpression_children_InstanceOfExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_MethodCall.gif │ │ │ ├── CreateInclusiveOrExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_NestedExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_NewConstructorCall.gif │ │ │ ├── CreateInclusiveOrExpression_children_NullLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateInclusiveOrExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateInclusiveOrExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateInclusiveOrExpression_children_RelationExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_SelfReference.gif │ │ │ ├── CreateInclusiveOrExpression_children_ShiftExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_StringReference.gif │ │ │ ├── CreateInclusiveOrExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateInclusiveOrExpression_children_UnaryExpression.gif │ │ │ ├── CreateInitializable_initialValue_AdditiveExpression.gif │ │ │ ├── CreateInitializable_initialValue_AndExpression.gif │ │ │ ├── CreateInitializable_initialValue_AnnotationInstance.gif │ │ │ ├── CreateInitializable_initialValue_ArrayInstantiationBySize.gif │ │ │ ├── CreateInitializable_initialValue_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateInitializable_initialValue_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateInitializable_initialValue_AssignmentExpression.gif │ │ │ ├── CreateInitializable_initialValue_BooleanLiteral.gif │ │ │ ├── CreateInitializable_initialValue_CastExpression.gif │ │ │ ├── CreateInitializable_initialValue_CharacterLiteral.gif │ │ │ ├── CreateInitializable_initialValue_ConditionalAndExpression.gif │ │ │ ├── CreateInitializable_initialValue_ConditionalExpression.gif │ │ │ ├── CreateInitializable_initialValue_ConditionalOrExpression.gif │ │ │ ├── CreateInitializable_initialValue_DecimalDoubleLiteral.gif │ │ │ ├── CreateInitializable_initialValue_DecimalFloatLiteral.gif │ │ │ ├── CreateInitializable_initialValue_DecimalIntegerLiteral.gif │ │ │ ├── CreateInitializable_initialValue_DecimalLongLiteral.gif │ │ │ ├── CreateInitializable_initialValue_EqualityExpression.gif │ │ │ ├── CreateInitializable_initialValue_ExclusiveOrExpression.gif │ │ │ ├── CreateInitializable_initialValue_ExplicitConstructorCall.gif │ │ │ ├── CreateInitializable_initialValue_HexDoubleLiteral.gif │ │ │ ├── CreateInitializable_initialValue_HexFloatLiteral.gif │ │ │ ├── CreateInitializable_initialValue_HexIntegerLiteral.gif │ │ │ ├── CreateInitializable_initialValue_HexLongLiteral.gif │ │ │ ├── CreateInitializable_initialValue_IdentifierReference.gif │ │ │ ├── CreateInitializable_initialValue_InclusiveOrExpression.gif │ │ │ ├── CreateInitializable_initialValue_InstanceOfExpression.gif │ │ │ ├── CreateInitializable_initialValue_MethodCall.gif │ │ │ ├── CreateInitializable_initialValue_MultiplicativeExpression.gif │ │ │ ├── CreateInitializable_initialValue_NestedExpression.gif │ │ │ ├── CreateInitializable_initialValue_NewConstructorCall.gif │ │ │ ├── CreateInitializable_initialValue_NullLiteral.gif │ │ │ ├── CreateInitializable_initialValue_OctalIntegerLiteral.gif │ │ │ ├── CreateInitializable_initialValue_OctalLongLiteral.gif │ │ │ ├── CreateInitializable_initialValue_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateInitializable_initialValue_PrimitiveTypeReference.gif │ │ │ ├── CreateInitializable_initialValue_ReflectiveClassReference.gif │ │ │ ├── CreateInitializable_initialValue_RelationExpression.gif │ │ │ ├── CreateInitializable_initialValue_SelfReference.gif │ │ │ ├── CreateInitializable_initialValue_ShiftExpression.gif │ │ │ ├── CreateInitializable_initialValue_StringReference.gif │ │ │ ├── CreateInitializable_initialValue_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateInitializable_initialValue_UnaryExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_AdditiveExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_AnnotationInstance.gif │ │ │ ├── CreateInstanceOfExpression_child_ArrayInstantiationBySize.gif │ │ │ ├── CreateInstanceOfExpression_child_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateInstanceOfExpression_child_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateInstanceOfExpression_child_BooleanLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_CastExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_CharacterLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_DecimalDoubleLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_DecimalFloatLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_DecimalIntegerLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_DecimalLongLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_ExplicitConstructorCall.gif │ │ │ ├── CreateInstanceOfExpression_child_HexDoubleLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_HexFloatLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_HexIntegerLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_HexLongLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_IdentifierReference.gif │ │ │ ├── CreateInstanceOfExpression_child_MethodCall.gif │ │ │ ├── CreateInstanceOfExpression_child_MultiplicativeExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_NestedExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_NewConstructorCall.gif │ │ │ ├── CreateInstanceOfExpression_child_NullLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_OctalIntegerLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_OctalLongLiteral.gif │ │ │ ├── CreateInstanceOfExpression_child_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_PrimitiveTypeReference.gif │ │ │ ├── CreateInstanceOfExpression_child_ReflectiveClassReference.gif │ │ │ ├── CreateInstanceOfExpression_child_RelationExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_SelfReference.gif │ │ │ ├── CreateInstanceOfExpression_child_ShiftExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_StringReference.gif │ │ │ ├── CreateInstanceOfExpression_child_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateInstanceOfExpression_child_UnaryExpression.gif │ │ │ ├── CreateInterface_extends_Boolean.gif │ │ │ ├── CreateInterface_extends_Byte.gif │ │ │ ├── CreateInterface_extends_Char.gif │ │ │ ├── CreateInterface_extends_ClassifierReference.gif │ │ │ ├── CreateInterface_extends_Double.gif │ │ │ ├── CreateInterface_extends_Float.gif │ │ │ ├── CreateInterface_extends_Int.gif │ │ │ ├── CreateInterface_extends_Long.gif │ │ │ ├── CreateInterface_extends_NamespaceClassifierReference.gif │ │ │ ├── CreateInterface_extends_Short.gif │ │ │ ├── CreateInterface_extends_Void.gif │ │ │ ├── CreateLocalVariableStatement_variable_LocalVariable.gif │ │ │ ├── CreateLocalVariable_additionalLocalVariables_AdditionalLocalVariable.gif │ │ │ ├── CreateMemberContainer_defaultMembers_Annotation.gif │ │ │ ├── CreateMemberContainer_defaultMembers_AnnotationAttribute.gif │ │ │ ├── CreateMemberContainer_defaultMembers_Block.gif │ │ │ ├── CreateMemberContainer_defaultMembers_Class.gif │ │ │ ├── CreateMemberContainer_defaultMembers_ClassMethod.gif │ │ │ ├── CreateMemberContainer_defaultMembers_Constructor.gif │ │ │ ├── CreateMemberContainer_defaultMembers_EmptyMember.gif │ │ │ ├── CreateMemberContainer_defaultMembers_Enumeration.gif │ │ │ ├── CreateMemberContainer_defaultMembers_Field.gif │ │ │ ├── CreateMemberContainer_defaultMembers_Interface.gif │ │ │ ├── CreateMemberContainer_defaultMembers_InterfaceMethod.gif │ │ │ ├── CreateMemberContainer_members_Annotation.gif │ │ │ ├── CreateMemberContainer_members_AnnotationAttribute.gif │ │ │ ├── CreateMemberContainer_members_Block.gif │ │ │ ├── CreateMemberContainer_members_Class.gif │ │ │ ├── CreateMemberContainer_members_ClassMethod.gif │ │ │ ├── CreateMemberContainer_members_Constructor.gif │ │ │ ├── CreateMemberContainer_members_EmptyMember.gif │ │ │ ├── CreateMemberContainer_members_Enumeration.gif │ │ │ ├── CreateMemberContainer_members_Field.gif │ │ │ ├── CreateMemberContainer_members_Interface.gif │ │ │ ├── CreateMemberContainer_members_InterfaceMethod.gif │ │ │ ├── CreateModifiable_modifiers_Abstract.gif │ │ │ ├── CreateModifiable_modifiers_Final.gif │ │ │ ├── CreateModifiable_modifiers_Native.gif │ │ │ ├── CreateModifiable_modifiers_Private.gif │ │ │ ├── CreateModifiable_modifiers_Protected.gif │ │ │ ├── CreateModifiable_modifiers_Public.gif │ │ │ ├── CreateModifiable_modifiers_Static.gif │ │ │ ├── CreateModifiable_modifiers_Strictfp.gif │ │ │ ├── CreateModifiable_modifiers_Synchronized.gif │ │ │ ├── CreateModifiable_modifiers_Transient.gif │ │ │ ├── CreateModifiable_modifiers_Volatile.gif │ │ │ ├── CreateMultiplicativeExpression_children_AnnotationInstance.gif │ │ │ ├── CreateMultiplicativeExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateMultiplicativeExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateMultiplicativeExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateMultiplicativeExpression_children_BooleanLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_CastExpression.gif │ │ │ ├── CreateMultiplicativeExpression_children_CharacterLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateMultiplicativeExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_HexLongLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_IdentifierReference.gif │ │ │ ├── CreateMultiplicativeExpression_children_MethodCall.gif │ │ │ ├── CreateMultiplicativeExpression_children_NestedExpression.gif │ │ │ ├── CreateMultiplicativeExpression_children_NewConstructorCall.gif │ │ │ ├── CreateMultiplicativeExpression_children_NullLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateMultiplicativeExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateMultiplicativeExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateMultiplicativeExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateMultiplicativeExpression_children_SelfReference.gif │ │ │ ├── CreateMultiplicativeExpression_children_StringReference.gif │ │ │ ├── CreateMultiplicativeExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateMultiplicativeExpression_children_UnaryExpression.gif │ │ │ ├── CreateMultiplicativeExpression_multiplicativeOperators_Division.gif │ │ │ ├── CreateMultiplicativeExpression_multiplicativeOperators_Multiplication.gif │ │ │ ├── CreateMultiplicativeExpression_multiplicativeOperators_Remainder.gif │ │ │ ├── CreateNamespaceClassifierReference_classifierReferences_ClassifierReference.gif │ │ │ ├── CreateNestedExpression_expression_AdditiveExpression.gif │ │ │ ├── CreateNestedExpression_expression_AndExpression.gif │ │ │ ├── CreateNestedExpression_expression_AnnotationInstance.gif │ │ │ ├── CreateNestedExpression_expression_ArrayInstantiationBySize.gif │ │ │ ├── CreateNestedExpression_expression_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateNestedExpression_expression_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateNestedExpression_expression_AssignmentExpression.gif │ │ │ ├── CreateNestedExpression_expression_BooleanLiteral.gif │ │ │ ├── CreateNestedExpression_expression_CastExpression.gif │ │ │ ├── CreateNestedExpression_expression_CharacterLiteral.gif │ │ │ ├── CreateNestedExpression_expression_ConditionalAndExpression.gif │ │ │ ├── CreateNestedExpression_expression_ConditionalExpression.gif │ │ │ ├── CreateNestedExpression_expression_ConditionalOrExpression.gif │ │ │ ├── CreateNestedExpression_expression_DecimalDoubleLiteral.gif │ │ │ ├── CreateNestedExpression_expression_DecimalFloatLiteral.gif │ │ │ ├── CreateNestedExpression_expression_DecimalIntegerLiteral.gif │ │ │ ├── CreateNestedExpression_expression_DecimalLongLiteral.gif │ │ │ ├── CreateNestedExpression_expression_EqualityExpression.gif │ │ │ ├── CreateNestedExpression_expression_ExclusiveOrExpression.gif │ │ │ ├── CreateNestedExpression_expression_ExplicitConstructorCall.gif │ │ │ ├── CreateNestedExpression_expression_HexDoubleLiteral.gif │ │ │ ├── CreateNestedExpression_expression_HexFloatLiteral.gif │ │ │ ├── CreateNestedExpression_expression_HexIntegerLiteral.gif │ │ │ ├── CreateNestedExpression_expression_HexLongLiteral.gif │ │ │ ├── CreateNestedExpression_expression_IdentifierReference.gif │ │ │ ├── CreateNestedExpression_expression_InclusiveOrExpression.gif │ │ │ ├── CreateNestedExpression_expression_InstanceOfExpression.gif │ │ │ ├── CreateNestedExpression_expression_MethodCall.gif │ │ │ ├── CreateNestedExpression_expression_MultiplicativeExpression.gif │ │ │ ├── CreateNestedExpression_expression_NestedExpression.gif │ │ │ ├── CreateNestedExpression_expression_NewConstructorCall.gif │ │ │ ├── CreateNestedExpression_expression_NullLiteral.gif │ │ │ ├── CreateNestedExpression_expression_OctalIntegerLiteral.gif │ │ │ ├── CreateNestedExpression_expression_OctalLongLiteral.gif │ │ │ ├── CreateNestedExpression_expression_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateNestedExpression_expression_PrimitiveTypeReference.gif │ │ │ ├── CreateNestedExpression_expression_ReflectiveClassReference.gif │ │ │ ├── CreateNestedExpression_expression_RelationExpression.gif │ │ │ ├── CreateNestedExpression_expression_SelfReference.gif │ │ │ ├── CreateNestedExpression_expression_ShiftExpression.gif │ │ │ ├── CreateNestedExpression_expression_StringReference.gif │ │ │ ├── CreateNestedExpression_expression_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateNestedExpression_expression_UnaryExpression.gif │ │ │ ├── CreateNewConstructorCall_anonymousClass_AnonymousClass.gif │ │ │ ├── CreatePackageReference_subpackages_PackageReference.gif │ │ │ ├── CreatePackage_compilationUnits_CompilationUnit.gif │ │ │ ├── CreateParametrizable_parameters_OrdinaryParameter.gif │ │ │ ├── CreateParametrizable_parameters_VariableLengthParameter.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Boolean.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Byte.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Char.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Double.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Float.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Int.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Long.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Short.gif │ │ │ ├── CreatePrimitiveTypeReference_primitiveType_Void.gif │ │ │ ├── CreateReference_arraySelectors_ArraySelector.gif │ │ │ ├── CreateReference_next_AnnotationInstance.gif │ │ │ ├── CreateReference_next_ArrayInstantiationBySize.gif │ │ │ ├── CreateReference_next_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateReference_next_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateReference_next_ExplicitConstructorCall.gif │ │ │ ├── CreateReference_next_IdentifierReference.gif │ │ │ ├── CreateReference_next_MethodCall.gif │ │ │ ├── CreateReference_next_NestedExpression.gif │ │ │ ├── CreateReference_next_NewConstructorCall.gif │ │ │ ├── CreateReference_next_PrimitiveTypeReference.gif │ │ │ ├── CreateReference_next_ReflectiveClassReference.gif │ │ │ ├── CreateReference_next_SelfReference.gif │ │ │ ├── CreateReference_next_StringReference.gif │ │ │ ├── CreateRelationExpression_children_AdditiveExpression.gif │ │ │ ├── CreateRelationExpression_children_AnnotationInstance.gif │ │ │ ├── CreateRelationExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateRelationExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateRelationExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateRelationExpression_children_BooleanLiteral.gif │ │ │ ├── CreateRelationExpression_children_CastExpression.gif │ │ │ ├── CreateRelationExpression_children_CharacterLiteral.gif │ │ │ ├── CreateRelationExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateRelationExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateRelationExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateRelationExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateRelationExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateRelationExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateRelationExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateRelationExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateRelationExpression_children_HexLongLiteral.gif │ │ │ ├── CreateRelationExpression_children_IdentifierReference.gif │ │ │ ├── CreateRelationExpression_children_MethodCall.gif │ │ │ ├── CreateRelationExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateRelationExpression_children_NestedExpression.gif │ │ │ ├── CreateRelationExpression_children_NewConstructorCall.gif │ │ │ ├── CreateRelationExpression_children_NullLiteral.gif │ │ │ ├── CreateRelationExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateRelationExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateRelationExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateRelationExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateRelationExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateRelationExpression_children_SelfReference.gif │ │ │ ├── CreateRelationExpression_children_ShiftExpression.gif │ │ │ ├── CreateRelationExpression_children_StringReference.gif │ │ │ ├── CreateRelationExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateRelationExpression_children_UnaryExpression.gif │ │ │ ├── CreateRelationExpression_relationOperators_GreaterThan.gif │ │ │ ├── CreateRelationExpression_relationOperators_GreaterThanOrEqual.gif │ │ │ ├── CreateRelationExpression_relationOperators_LessThan.gif │ │ │ ├── CreateRelationExpression_relationOperators_LessThanOrEqual.gif │ │ │ ├── CreateReturn_returnValue_AdditiveExpression.gif │ │ │ ├── CreateReturn_returnValue_AndExpression.gif │ │ │ ├── CreateReturn_returnValue_AnnotationInstance.gif │ │ │ ├── CreateReturn_returnValue_ArrayInstantiationBySize.gif │ │ │ ├── CreateReturn_returnValue_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateReturn_returnValue_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateReturn_returnValue_AssignmentExpression.gif │ │ │ ├── CreateReturn_returnValue_BooleanLiteral.gif │ │ │ ├── CreateReturn_returnValue_CastExpression.gif │ │ │ ├── CreateReturn_returnValue_CharacterLiteral.gif │ │ │ ├── CreateReturn_returnValue_ConditionalAndExpression.gif │ │ │ ├── CreateReturn_returnValue_ConditionalExpression.gif │ │ │ ├── CreateReturn_returnValue_ConditionalOrExpression.gif │ │ │ ├── CreateReturn_returnValue_DecimalDoubleLiteral.gif │ │ │ ├── CreateReturn_returnValue_DecimalFloatLiteral.gif │ │ │ ├── CreateReturn_returnValue_DecimalIntegerLiteral.gif │ │ │ ├── CreateReturn_returnValue_DecimalLongLiteral.gif │ │ │ ├── CreateReturn_returnValue_EqualityExpression.gif │ │ │ ├── CreateReturn_returnValue_ExclusiveOrExpression.gif │ │ │ ├── CreateReturn_returnValue_ExplicitConstructorCall.gif │ │ │ ├── CreateReturn_returnValue_HexDoubleLiteral.gif │ │ │ ├── CreateReturn_returnValue_HexFloatLiteral.gif │ │ │ ├── CreateReturn_returnValue_HexIntegerLiteral.gif │ │ │ ├── CreateReturn_returnValue_HexLongLiteral.gif │ │ │ ├── CreateReturn_returnValue_IdentifierReference.gif │ │ │ ├── CreateReturn_returnValue_InclusiveOrExpression.gif │ │ │ ├── CreateReturn_returnValue_InstanceOfExpression.gif │ │ │ ├── CreateReturn_returnValue_MethodCall.gif │ │ │ ├── CreateReturn_returnValue_MultiplicativeExpression.gif │ │ │ ├── CreateReturn_returnValue_NestedExpression.gif │ │ │ ├── CreateReturn_returnValue_NewConstructorCall.gif │ │ │ ├── CreateReturn_returnValue_NullLiteral.gif │ │ │ ├── CreateReturn_returnValue_OctalIntegerLiteral.gif │ │ │ ├── CreateReturn_returnValue_OctalLongLiteral.gif │ │ │ ├── CreateReturn_returnValue_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateReturn_returnValue_PrimitiveTypeReference.gif │ │ │ ├── CreateReturn_returnValue_ReflectiveClassReference.gif │ │ │ ├── CreateReturn_returnValue_RelationExpression.gif │ │ │ ├── CreateReturn_returnValue_SelfReference.gif │ │ │ ├── CreateReturn_returnValue_ShiftExpression.gif │ │ │ ├── CreateReturn_returnValue_StringReference.gif │ │ │ ├── CreateReturn_returnValue_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateReturn_returnValue_UnaryExpression.gif │ │ │ ├── CreateSelfReference_self_Super.gif │ │ │ ├── CreateSelfReference_self_This.gif │ │ │ ├── CreateShiftExpression_children_AdditiveExpression.gif │ │ │ ├── CreateShiftExpression_children_AnnotationInstance.gif │ │ │ ├── CreateShiftExpression_children_ArrayInstantiationBySize.gif │ │ │ ├── CreateShiftExpression_children_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateShiftExpression_children_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateShiftExpression_children_BooleanLiteral.gif │ │ │ ├── CreateShiftExpression_children_CastExpression.gif │ │ │ ├── CreateShiftExpression_children_CharacterLiteral.gif │ │ │ ├── CreateShiftExpression_children_DecimalDoubleLiteral.gif │ │ │ ├── CreateShiftExpression_children_DecimalFloatLiteral.gif │ │ │ ├── CreateShiftExpression_children_DecimalIntegerLiteral.gif │ │ │ ├── CreateShiftExpression_children_DecimalLongLiteral.gif │ │ │ ├── CreateShiftExpression_children_ExplicitConstructorCall.gif │ │ │ ├── CreateShiftExpression_children_HexDoubleLiteral.gif │ │ │ ├── CreateShiftExpression_children_HexFloatLiteral.gif │ │ │ ├── CreateShiftExpression_children_HexIntegerLiteral.gif │ │ │ ├── CreateShiftExpression_children_HexLongLiteral.gif │ │ │ ├── CreateShiftExpression_children_IdentifierReference.gif │ │ │ ├── CreateShiftExpression_children_MethodCall.gif │ │ │ ├── CreateShiftExpression_children_MultiplicativeExpression.gif │ │ │ ├── CreateShiftExpression_children_NestedExpression.gif │ │ │ ├── CreateShiftExpression_children_NewConstructorCall.gif │ │ │ ├── CreateShiftExpression_children_NullLiteral.gif │ │ │ ├── CreateShiftExpression_children_OctalIntegerLiteral.gif │ │ │ ├── CreateShiftExpression_children_OctalLongLiteral.gif │ │ │ ├── CreateShiftExpression_children_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateShiftExpression_children_PrimitiveTypeReference.gif │ │ │ ├── CreateShiftExpression_children_ReflectiveClassReference.gif │ │ │ ├── CreateShiftExpression_children_SelfReference.gif │ │ │ ├── CreateShiftExpression_children_StringReference.gif │ │ │ ├── CreateShiftExpression_children_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateShiftExpression_children_UnaryExpression.gif │ │ │ ├── CreateShiftExpression_shiftOperators_LeftShift.gif │ │ │ ├── CreateShiftExpression_shiftOperators_RightShift.gif │ │ │ ├── CreateShiftExpression_shiftOperators_UnsignedRightShift.gif │ │ │ ├── CreateSingleAnnotationParameter_value_AdditiveExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_AndExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_AnnotationInstance.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ArrayInitializer.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ArrayInstantiationBySize.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateSingleAnnotationParameter_value_AssignmentExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_BooleanLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_CastExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_CharacterLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ConditionalAndExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ConditionalExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ConditionalOrExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_DecimalDoubleLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_DecimalFloatLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_DecimalIntegerLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_DecimalLongLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_EqualityExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ExclusiveOrExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ExplicitConstructorCall.gif │ │ │ ├── CreateSingleAnnotationParameter_value_HexDoubleLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_HexFloatLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_HexIntegerLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_HexLongLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_IdentifierReference.gif │ │ │ ├── CreateSingleAnnotationParameter_value_InclusiveOrExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_InstanceOfExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_MethodCall.gif │ │ │ ├── CreateSingleAnnotationParameter_value_MultiplicativeExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_NestedExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_NewConstructorCall.gif │ │ │ ├── CreateSingleAnnotationParameter_value_NullLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_OctalIntegerLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_OctalLongLiteral.gif │ │ │ ├── CreateSingleAnnotationParameter_value_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_PrimitiveTypeReference.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ReflectiveClassReference.gif │ │ │ ├── CreateSingleAnnotationParameter_value_RelationExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_SelfReference.gif │ │ │ ├── CreateSingleAnnotationParameter_value_ShiftExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_StringReference.gif │ │ │ ├── CreateSingleAnnotationParameter_value_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateSingleAnnotationParameter_value_UnaryExpression.gif │ │ │ ├── CreateStatementContainer_statement_Annotation.gif │ │ │ ├── CreateStatementContainer_statement_Assert.gif │ │ │ ├── CreateStatementContainer_statement_Block.gif │ │ │ ├── CreateStatementContainer_statement_Break.gif │ │ │ ├── CreateStatementContainer_statement_Class.gif │ │ │ ├── CreateStatementContainer_statement_Condition.gif │ │ │ ├── CreateStatementContainer_statement_Continue.gif │ │ │ ├── CreateStatementContainer_statement_DoWhileLoop.gif │ │ │ ├── CreateStatementContainer_statement_EmptyStatement.gif │ │ │ ├── CreateStatementContainer_statement_Enumeration.gif │ │ │ ├── CreateStatementContainer_statement_ExpressionStatement.gif │ │ │ ├── CreateStatementContainer_statement_ForEachLoop.gif │ │ │ ├── CreateStatementContainer_statement_ForLoop.gif │ │ │ ├── CreateStatementContainer_statement_Interface.gif │ │ │ ├── CreateStatementContainer_statement_JumpLabel.gif │ │ │ ├── CreateStatementContainer_statement_LocalVariableStatement.gif │ │ │ ├── CreateStatementContainer_statement_Return.gif │ │ │ ├── CreateStatementContainer_statement_Switch.gif │ │ │ ├── CreateStatementContainer_statement_SynchronizedBlock.gif │ │ │ ├── CreateStatementContainer_statement_Throw.gif │ │ │ ├── CreateStatementContainer_statement_TryBlock.gif │ │ │ ├── CreateStatementContainer_statement_WhileLoop.gif │ │ │ ├── CreateStatementListContainer_statements_Annotation.gif │ │ │ ├── CreateStatementListContainer_statements_Assert.gif │ │ │ ├── CreateStatementListContainer_statements_Block.gif │ │ │ ├── CreateStatementListContainer_statements_Break.gif │ │ │ ├── CreateStatementListContainer_statements_Class.gif │ │ │ ├── CreateStatementListContainer_statements_Condition.gif │ │ │ ├── CreateStatementListContainer_statements_Continue.gif │ │ │ ├── CreateStatementListContainer_statements_DoWhileLoop.gif │ │ │ ├── CreateStatementListContainer_statements_EmptyStatement.gif │ │ │ ├── CreateStatementListContainer_statements_Enumeration.gif │ │ │ ├── CreateStatementListContainer_statements_ExpressionStatement.gif │ │ │ ├── CreateStatementListContainer_statements_ForEachLoop.gif │ │ │ ├── CreateStatementListContainer_statements_ForLoop.gif │ │ │ ├── CreateStatementListContainer_statements_Interface.gif │ │ │ ├── CreateStatementListContainer_statements_JumpLabel.gif │ │ │ ├── CreateStatementListContainer_statements_LocalVariableStatement.gif │ │ │ ├── CreateStatementListContainer_statements_Return.gif │ │ │ ├── CreateStatementListContainer_statements_Switch.gif │ │ │ ├── CreateStatementListContainer_statements_SynchronizedBlock.gif │ │ │ ├── CreateStatementListContainer_statements_Throw.gif │ │ │ ├── CreateStatementListContainer_statements_TryBlock.gif │ │ │ ├── CreateStatementListContainer_statements_WhileLoop.gif │ │ │ ├── CreateStaticImport_static_Static.gif │ │ │ ├── CreateSuperTypeArgument_superType_Boolean.gif │ │ │ ├── CreateSuperTypeArgument_superType_Byte.gif │ │ │ ├── CreateSuperTypeArgument_superType_Char.gif │ │ │ ├── CreateSuperTypeArgument_superType_ClassifierReference.gif │ │ │ ├── CreateSuperTypeArgument_superType_Double.gif │ │ │ ├── CreateSuperTypeArgument_superType_Float.gif │ │ │ ├── CreateSuperTypeArgument_superType_Int.gif │ │ │ ├── CreateSuperTypeArgument_superType_Long.gif │ │ │ ├── CreateSuperTypeArgument_superType_NamespaceClassifierReference.gif │ │ │ ├── CreateSuperTypeArgument_superType_Short.gif │ │ │ ├── CreateSuperTypeArgument_superType_Void.gif │ │ │ ├── CreateSwitch_cases_DefaultSwitchCase.gif │ │ │ ├── CreateSwitch_cases_NormalSwitchCase.gif │ │ │ ├── CreateSwitch_variable_AdditiveExpression.gif │ │ │ ├── CreateSwitch_variable_AndExpression.gif │ │ │ ├── CreateSwitch_variable_AnnotationInstance.gif │ │ │ ├── CreateSwitch_variable_ArrayInstantiationBySize.gif │ │ │ ├── CreateSwitch_variable_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateSwitch_variable_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateSwitch_variable_AssignmentExpression.gif │ │ │ ├── CreateSwitch_variable_BooleanLiteral.gif │ │ │ ├── CreateSwitch_variable_CastExpression.gif │ │ │ ├── CreateSwitch_variable_CharacterLiteral.gif │ │ │ ├── CreateSwitch_variable_ConditionalAndExpression.gif │ │ │ ├── CreateSwitch_variable_ConditionalExpression.gif │ │ │ ├── CreateSwitch_variable_ConditionalOrExpression.gif │ │ │ ├── CreateSwitch_variable_DecimalDoubleLiteral.gif │ │ │ ├── CreateSwitch_variable_DecimalFloatLiteral.gif │ │ │ ├── CreateSwitch_variable_DecimalIntegerLiteral.gif │ │ │ ├── CreateSwitch_variable_DecimalLongLiteral.gif │ │ │ ├── CreateSwitch_variable_EqualityExpression.gif │ │ │ ├── CreateSwitch_variable_ExclusiveOrExpression.gif │ │ │ ├── CreateSwitch_variable_ExplicitConstructorCall.gif │ │ │ ├── CreateSwitch_variable_HexDoubleLiteral.gif │ │ │ ├── CreateSwitch_variable_HexFloatLiteral.gif │ │ │ ├── CreateSwitch_variable_HexIntegerLiteral.gif │ │ │ ├── CreateSwitch_variable_HexLongLiteral.gif │ │ │ ├── CreateSwitch_variable_IdentifierReference.gif │ │ │ ├── CreateSwitch_variable_InclusiveOrExpression.gif │ │ │ ├── CreateSwitch_variable_InstanceOfExpression.gif │ │ │ ├── CreateSwitch_variable_MethodCall.gif │ │ │ ├── CreateSwitch_variable_MultiplicativeExpression.gif │ │ │ ├── CreateSwitch_variable_NestedExpression.gif │ │ │ ├── CreateSwitch_variable_NewConstructorCall.gif │ │ │ ├── CreateSwitch_variable_NullLiteral.gif │ │ │ ├── CreateSwitch_variable_OctalIntegerLiteral.gif │ │ │ ├── CreateSwitch_variable_OctalLongLiteral.gif │ │ │ ├── CreateSwitch_variable_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateSwitch_variable_PrimitiveTypeReference.gif │ │ │ ├── CreateSwitch_variable_ReflectiveClassReference.gif │ │ │ ├── CreateSwitch_variable_RelationExpression.gif │ │ │ ├── CreateSwitch_variable_SelfReference.gif │ │ │ ├── CreateSwitch_variable_ShiftExpression.gif │ │ │ ├── CreateSwitch_variable_StringReference.gif │ │ │ ├── CreateSwitch_variable_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateSwitch_variable_UnaryExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_AdditiveExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_AndExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_AnnotationInstance.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ArrayInstantiationBySize.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_AssignmentExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_BooleanLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_CastExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_CharacterLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ConditionalAndExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ConditionalExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ConditionalOrExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_DecimalDoubleLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_DecimalFloatLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_DecimalIntegerLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_DecimalLongLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_EqualityExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ExclusiveOrExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ExplicitConstructorCall.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_HexDoubleLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_HexFloatLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_HexIntegerLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_HexLongLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_IdentifierReference.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_InclusiveOrExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_InstanceOfExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_MethodCall.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_MultiplicativeExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_NestedExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_NewConstructorCall.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_NullLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_OctalIntegerLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_OctalLongLiteral.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_PrimitiveTypeReference.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ReflectiveClassReference.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_RelationExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_SelfReference.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_ShiftExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_StringReference.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateSynchronizedBlock_lockProvider_UnaryExpression.gif │ │ │ ├── CreateThrow_throwable_AdditiveExpression.gif │ │ │ ├── CreateThrow_throwable_AndExpression.gif │ │ │ ├── CreateThrow_throwable_AnnotationInstance.gif │ │ │ ├── CreateThrow_throwable_ArrayInstantiationBySize.gif │ │ │ ├── CreateThrow_throwable_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateThrow_throwable_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateThrow_throwable_AssignmentExpression.gif │ │ │ ├── CreateThrow_throwable_BooleanLiteral.gif │ │ │ ├── CreateThrow_throwable_CastExpression.gif │ │ │ ├── CreateThrow_throwable_CharacterLiteral.gif │ │ │ ├── CreateThrow_throwable_ConditionalAndExpression.gif │ │ │ ├── CreateThrow_throwable_ConditionalExpression.gif │ │ │ ├── CreateThrow_throwable_ConditionalOrExpression.gif │ │ │ ├── CreateThrow_throwable_DecimalDoubleLiteral.gif │ │ │ ├── CreateThrow_throwable_DecimalFloatLiteral.gif │ │ │ ├── CreateThrow_throwable_DecimalIntegerLiteral.gif │ │ │ ├── CreateThrow_throwable_DecimalLongLiteral.gif │ │ │ ├── CreateThrow_throwable_EqualityExpression.gif │ │ │ ├── CreateThrow_throwable_ExclusiveOrExpression.gif │ │ │ ├── CreateThrow_throwable_ExplicitConstructorCall.gif │ │ │ ├── CreateThrow_throwable_HexDoubleLiteral.gif │ │ │ ├── CreateThrow_throwable_HexFloatLiteral.gif │ │ │ ├── CreateThrow_throwable_HexIntegerLiteral.gif │ │ │ ├── CreateThrow_throwable_HexLongLiteral.gif │ │ │ ├── CreateThrow_throwable_IdentifierReference.gif │ │ │ ├── CreateThrow_throwable_InclusiveOrExpression.gif │ │ │ ├── CreateThrow_throwable_InstanceOfExpression.gif │ │ │ ├── CreateThrow_throwable_MethodCall.gif │ │ │ ├── CreateThrow_throwable_MultiplicativeExpression.gif │ │ │ ├── CreateThrow_throwable_NestedExpression.gif │ │ │ ├── CreateThrow_throwable_NewConstructorCall.gif │ │ │ ├── CreateThrow_throwable_NullLiteral.gif │ │ │ ├── CreateThrow_throwable_OctalIntegerLiteral.gif │ │ │ ├── CreateThrow_throwable_OctalLongLiteral.gif │ │ │ ├── CreateThrow_throwable_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateThrow_throwable_PrimitiveTypeReference.gif │ │ │ ├── CreateThrow_throwable_ReflectiveClassReference.gif │ │ │ ├── CreateThrow_throwable_RelationExpression.gif │ │ │ ├── CreateThrow_throwable_SelfReference.gif │ │ │ ├── CreateThrow_throwable_ShiftExpression.gif │ │ │ ├── CreateThrow_throwable_StringReference.gif │ │ │ ├── CreateThrow_throwable_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateThrow_throwable_UnaryExpression.gif │ │ │ ├── CreateTryBlock_catcheBlocks_CatchBlock.gif │ │ │ ├── CreateTryBlock_finallyBlock_Block.gif │ │ │ ├── CreateTypeArgumentable_typeArguments_ExtendsTypeArgument.gif │ │ │ ├── CreateTypeArgumentable_typeArguments_QualifiedTypeArgument.gif │ │ │ ├── CreateTypeArgumentable_typeArguments_SuperTypeArgument.gif │ │ │ ├── CreateTypeArgumentable_typeArguments_UnknownTypeArgument.gif │ │ │ ├── CreateTypeParameter_extendTypes_Boolean.gif │ │ │ ├── CreateTypeParameter_extendTypes_Byte.gif │ │ │ ├── CreateTypeParameter_extendTypes_Char.gif │ │ │ ├── CreateTypeParameter_extendTypes_ClassifierReference.gif │ │ │ ├── CreateTypeParameter_extendTypes_Double.gif │ │ │ ├── CreateTypeParameter_extendTypes_Float.gif │ │ │ ├── CreateTypeParameter_extendTypes_Int.gif │ │ │ ├── CreateTypeParameter_extendTypes_Long.gif │ │ │ ├── CreateTypeParameter_extendTypes_NamespaceClassifierReference.gif │ │ │ ├── CreateTypeParameter_extendTypes_Short.gif │ │ │ ├── CreateTypeParameter_extendTypes_Void.gif │ │ │ ├── CreateTypeParametrizable_typeParameters_TypeParameter.gif │ │ │ ├── CreateTypedElement_typeReference_Boolean.gif │ │ │ ├── CreateTypedElement_typeReference_Byte.gif │ │ │ ├── CreateTypedElement_typeReference_Char.gif │ │ │ ├── CreateTypedElement_typeReference_ClassifierReference.gif │ │ │ ├── CreateTypedElement_typeReference_Double.gif │ │ │ ├── CreateTypedElement_typeReference_Float.gif │ │ │ ├── CreateTypedElement_typeReference_Int.gif │ │ │ ├── CreateTypedElement_typeReference_Long.gif │ │ │ ├── CreateTypedElement_typeReference_NamespaceClassifierReference.gif │ │ │ ├── CreateTypedElement_typeReference_Short.gif │ │ │ ├── CreateTypedElement_typeReference_Void.gif │ │ │ ├── CreateUnaryExpression_child_AnnotationInstance.gif │ │ │ ├── CreateUnaryExpression_child_ArrayInstantiationBySize.gif │ │ │ ├── CreateUnaryExpression_child_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateUnaryExpression_child_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateUnaryExpression_child_BooleanLiteral.gif │ │ │ ├── CreateUnaryExpression_child_CastExpression.gif │ │ │ ├── CreateUnaryExpression_child_CharacterLiteral.gif │ │ │ ├── CreateUnaryExpression_child_DecimalDoubleLiteral.gif │ │ │ ├── CreateUnaryExpression_child_DecimalFloatLiteral.gif │ │ │ ├── CreateUnaryExpression_child_DecimalIntegerLiteral.gif │ │ │ ├── CreateUnaryExpression_child_DecimalLongLiteral.gif │ │ │ ├── CreateUnaryExpression_child_ExplicitConstructorCall.gif │ │ │ ├── CreateUnaryExpression_child_HexDoubleLiteral.gif │ │ │ ├── CreateUnaryExpression_child_HexFloatLiteral.gif │ │ │ ├── CreateUnaryExpression_child_HexIntegerLiteral.gif │ │ │ ├── CreateUnaryExpression_child_HexLongLiteral.gif │ │ │ ├── CreateUnaryExpression_child_IdentifierReference.gif │ │ │ ├── CreateUnaryExpression_child_MethodCall.gif │ │ │ ├── CreateUnaryExpression_child_NestedExpression.gif │ │ │ ├── CreateUnaryExpression_child_NewConstructorCall.gif │ │ │ ├── CreateUnaryExpression_child_NullLiteral.gif │ │ │ ├── CreateUnaryExpression_child_OctalIntegerLiteral.gif │ │ │ ├── CreateUnaryExpression_child_OctalLongLiteral.gif │ │ │ ├── CreateUnaryExpression_child_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateUnaryExpression_child_PrimitiveTypeReference.gif │ │ │ ├── CreateUnaryExpression_child_ReflectiveClassReference.gif │ │ │ ├── CreateUnaryExpression_child_SelfReference.gif │ │ │ ├── CreateUnaryExpression_child_StringReference.gif │ │ │ ├── CreateUnaryExpression_child_SuffixUnaryModificationExpression.gif │ │ │ ├── CreateUnaryExpression_operators_Addition.gif │ │ │ ├── CreateUnaryExpression_operators_Complement.gif │ │ │ ├── CreateUnaryExpression_operators_Negate.gif │ │ │ ├── CreateUnaryExpression_operators_Subtraction.gif │ │ │ ├── CreateUnaryModificationExpression_child_AnnotationInstance.gif │ │ │ ├── CreateUnaryModificationExpression_child_ArrayInstantiationBySize.gif │ │ │ ├── CreateUnaryModificationExpression_child_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateUnaryModificationExpression_child_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateUnaryModificationExpression_child_BooleanLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_CastExpression.gif │ │ │ ├── CreateUnaryModificationExpression_child_CharacterLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_DecimalDoubleLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_DecimalFloatLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_DecimalIntegerLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_DecimalLongLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_ExplicitConstructorCall.gif │ │ │ ├── CreateUnaryModificationExpression_child_HexDoubleLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_HexFloatLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_HexIntegerLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_HexLongLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_IdentifierReference.gif │ │ │ ├── CreateUnaryModificationExpression_child_MethodCall.gif │ │ │ ├── CreateUnaryModificationExpression_child_NestedExpression.gif │ │ │ ├── CreateUnaryModificationExpression_child_NewConstructorCall.gif │ │ │ ├── CreateUnaryModificationExpression_child_NullLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_OctalIntegerLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_OctalLongLiteral.gif │ │ │ ├── CreateUnaryModificationExpression_child_PrimitiveTypeReference.gif │ │ │ ├── CreateUnaryModificationExpression_child_ReflectiveClassReference.gif │ │ │ ├── CreateUnaryModificationExpression_child_SelfReference.gif │ │ │ ├── CreateUnaryModificationExpression_child_StringReference.gif │ │ │ ├── CreateUnaryModificationExpression_operator_MinusMinus.gif │ │ │ ├── CreateUnaryModificationExpression_operator_PlusPlus.gif │ │ │ ├── CreateWhileLoop_condition_AdditiveExpression.gif │ │ │ ├── CreateWhileLoop_condition_AndExpression.gif │ │ │ ├── CreateWhileLoop_condition_AnnotationInstance.gif │ │ │ ├── CreateWhileLoop_condition_ArrayInstantiationBySize.gif │ │ │ ├── CreateWhileLoop_condition_ArrayInstantiationByValuesTyped.gif │ │ │ ├── CreateWhileLoop_condition_ArrayInstantiationByValuesUntyped.gif │ │ │ ├── CreateWhileLoop_condition_AssignmentExpression.gif │ │ │ ├── CreateWhileLoop_condition_BooleanLiteral.gif │ │ │ ├── CreateWhileLoop_condition_CastExpression.gif │ │ │ ├── CreateWhileLoop_condition_CharacterLiteral.gif │ │ │ ├── CreateWhileLoop_condition_ConditionalAndExpression.gif │ │ │ ├── CreateWhileLoop_condition_ConditionalExpression.gif │ │ │ ├── CreateWhileLoop_condition_ConditionalOrExpression.gif │ │ │ ├── CreateWhileLoop_condition_DecimalDoubleLiteral.gif │ │ │ ├── CreateWhileLoop_condition_DecimalFloatLiteral.gif │ │ │ ├── CreateWhileLoop_condition_DecimalIntegerLiteral.gif │ │ │ ├── CreateWhileLoop_condition_DecimalLongLiteral.gif │ │ │ ├── CreateWhileLoop_condition_EqualityExpression.gif │ │ │ ├── CreateWhileLoop_condition_ExclusiveOrExpression.gif │ │ │ ├── CreateWhileLoop_condition_ExplicitConstructorCall.gif │ │ │ ├── CreateWhileLoop_condition_HexDoubleLiteral.gif │ │ │ ├── CreateWhileLoop_condition_HexFloatLiteral.gif │ │ │ ├── CreateWhileLoop_condition_HexIntegerLiteral.gif │ │ │ ├── CreateWhileLoop_condition_HexLongLiteral.gif │ │ │ ├── CreateWhileLoop_condition_IdentifierReference.gif │ │ │ ├── CreateWhileLoop_condition_InclusiveOrExpression.gif │ │ │ ├── CreateWhileLoop_condition_InstanceOfExpression.gif │ │ │ ├── CreateWhileLoop_condition_MethodCall.gif │ │ │ ├── CreateWhileLoop_condition_MultiplicativeExpression.gif │ │ │ ├── CreateWhileLoop_condition_NestedExpression.gif │ │ │ ├── CreateWhileLoop_condition_NewConstructorCall.gif │ │ │ ├── CreateWhileLoop_condition_NullLiteral.gif │ │ │ ├── CreateWhileLoop_condition_OctalIntegerLiteral.gif │ │ │ ├── CreateWhileLoop_condition_OctalLongLiteral.gif │ │ │ ├── CreateWhileLoop_condition_PrefixUnaryModificationExpression.gif │ │ │ ├── CreateWhileLoop_condition_PrimitiveTypeReference.gif │ │ │ ├── CreateWhileLoop_condition_ReflectiveClassReference.gif │ │ │ ├── CreateWhileLoop_condition_RelationExpression.gif │ │ │ ├── CreateWhileLoop_condition_SelfReference.gif │ │ │ ├── CreateWhileLoop_condition_ShiftExpression.gif │ │ │ ├── CreateWhileLoop_condition_StringReference.gif │ │ │ ├── CreateWhileLoop_condition_SuffixUnaryModificationExpression.gif │ │ │ └── CreateWhileLoop_condition_UnaryExpression.gif │ │ │ └── obj16 │ │ │ ├── Abstract.gif │ │ │ ├── Addition.gif │ │ │ ├── AdditionalField.gif │ │ │ ├── AdditionalLocalVariable.gif │ │ │ ├── AdditiveExpression.gif │ │ │ ├── AndExpression.gif │ │ │ ├── Annotation.gif │ │ │ ├── AnnotationAttribute.gif │ │ │ ├── AnnotationAttributeSetting.gif │ │ │ ├── AnnotationInstance.gif │ │ │ ├── AnnotationParameterList.gif │ │ │ ├── AnonymousClass.gif │ │ │ ├── ArrayDimension.gif │ │ │ ├── ArrayInitializer.gif │ │ │ ├── ArrayInstantiationBySize.gif │ │ │ ├── ArrayInstantiationByValuesTyped.gif │ │ │ ├── ArrayInstantiationByValuesUntyped.gif │ │ │ ├── ArraySelector.gif │ │ │ ├── Assert.gif │ │ │ ├── Assignment.gif │ │ │ ├── AssignmentAnd.gif │ │ │ ├── AssignmentDivision.gif │ │ │ ├── AssignmentExclusiveOr.gif │ │ │ ├── AssignmentExpression.gif │ │ │ ├── AssignmentLeftShift.gif │ │ │ ├── AssignmentMinus.gif │ │ │ ├── AssignmentModulo.gif │ │ │ ├── AssignmentMultiplication.gif │ │ │ ├── AssignmentOr.gif │ │ │ ├── AssignmentPlus.gif │ │ │ ├── AssignmentRightShift.gif │ │ │ ├── AssignmentUnsignedRightShift.gif │ │ │ ├── Block.gif │ │ │ ├── Boolean.gif │ │ │ ├── BooleanLiteral.gif │ │ │ ├── Break.gif │ │ │ ├── Byte.gif │ │ │ ├── CastExpression.gif │ │ │ ├── CatchBlock.gif │ │ │ ├── Char.gif │ │ │ ├── CharacterLiteral.gif │ │ │ ├── Class.gif │ │ │ ├── ClassMethod.gif │ │ │ ├── ClassifierImport.gif │ │ │ ├── ClassifierReference.gif │ │ │ ├── CompilationUnit.gif │ │ │ ├── Complement.gif │ │ │ ├── Condition.gif │ │ │ ├── ConditionalAndExpression.gif │ │ │ ├── ConditionalExpression.gif │ │ │ ├── ConditionalOrExpression.gif │ │ │ ├── Constructor.gif │ │ │ ├── Continue.gif │ │ │ ├── DecimalDoubleLiteral.gif │ │ │ ├── DecimalFloatLiteral.gif │ │ │ ├── DecimalIntegerLiteral.gif │ │ │ ├── DecimalLongLiteral.gif │ │ │ ├── DefaultSwitchCase.gif │ │ │ ├── Division.gif │ │ │ ├── DoWhileLoop.gif │ │ │ ├── Double.gif │ │ │ ├── EmptyMember.gif │ │ │ ├── EmptyModel.gif │ │ │ ├── EmptyStatement.gif │ │ │ ├── EnumConstant.gif │ │ │ ├── Enumeration.gif │ │ │ ├── Equal.gif │ │ │ ├── EqualityExpression.gif │ │ │ ├── ExclusiveOrExpression.gif │ │ │ ├── ExplicitConstructorCall.gif │ │ │ ├── ExpressionList.gif │ │ │ ├── ExpressionStatement.gif │ │ │ ├── ExtendsTypeArgument.gif │ │ │ ├── Field.gif │ │ │ ├── Final.gif │ │ │ ├── Float.gif │ │ │ ├── ForEachLoop.gif │ │ │ ├── ForLoop.gif │ │ │ ├── GreaterThan.gif │ │ │ ├── GreaterThanOrEqual.gif │ │ │ ├── HexDoubleLiteral.gif │ │ │ ├── HexFloatLiteral.gif │ │ │ ├── HexIntegerLiteral.gif │ │ │ ├── HexLongLiteral.gif │ │ │ ├── IdentifierReference.gif │ │ │ ├── InclusiveOrExpression.gif │ │ │ ├── InstanceOfExpression.gif │ │ │ ├── Int.gif │ │ │ ├── Interface.gif │ │ │ ├── InterfaceMethod.gif │ │ │ ├── JumpLabel.gif │ │ │ ├── LeftShift.gif │ │ │ ├── LessThan.gif │ │ │ ├── LessThanOrEqual.gif │ │ │ ├── LocalVariable.gif │ │ │ ├── LocalVariableStatement.gif │ │ │ ├── Long.gif │ │ │ ├── MethodCall.gif │ │ │ ├── MinusMinus.gif │ │ │ ├── Multiplication.gif │ │ │ ├── MultiplicativeExpression.gif │ │ │ ├── NamespaceClassifierReference.gif │ │ │ ├── Native.gif │ │ │ ├── Negate.gif │ │ │ ├── NestedExpression.gif │ │ │ ├── NewConstructorCall.gif │ │ │ ├── NormalSwitchCase.gif │ │ │ ├── NotEqual.gif │ │ │ ├── NullLiteral.gif │ │ │ ├── OctalIntegerLiteral.gif │ │ │ ├── OctalLongLiteral.gif │ │ │ ├── OrdinaryParameter.gif │ │ │ ├── Package.gif │ │ │ ├── PackageImport.gif │ │ │ ├── PackageReference.gif │ │ │ ├── PlusPlus.gif │ │ │ ├── PrefixUnaryModificationExpression.gif │ │ │ ├── PrimitiveTypeReference.gif │ │ │ ├── Private.gif │ │ │ ├── Protected.gif │ │ │ ├── Public.gif │ │ │ ├── QualifiedTypeArgument.gif │ │ │ ├── ReflectiveClassReference.gif │ │ │ ├── RelationExpression.gif │ │ │ ├── Remainder.gif │ │ │ ├── Return.gif │ │ │ ├── RightShift.gif │ │ │ ├── SelfReference.gif │ │ │ ├── ShiftExpression.gif │ │ │ ├── Short.gif │ │ │ ├── SingleAnnotationParameter.gif │ │ │ ├── Static.gif │ │ │ ├── StaticClassifierImport.gif │ │ │ ├── StaticMemberImport.gif │ │ │ ├── Strictfp.gif │ │ │ ├── StringReference.gif │ │ │ ├── Subtraction.gif │ │ │ ├── SuffixUnaryModificationExpression.gif │ │ │ ├── Super.gif │ │ │ ├── SuperTypeArgument.gif │ │ │ ├── Switch.gif │ │ │ ├── Synchronized.gif │ │ │ ├── SynchronizedBlock.gif │ │ │ ├── This.gif │ │ │ ├── Throw.gif │ │ │ ├── Transient.gif │ │ │ ├── TryBlock.gif │ │ │ ├── TypeParameter.gif │ │ │ ├── UnaryExpression.gif │ │ │ ├── UnknownTypeArgument.gif │ │ │ ├── UnsignedRightShift.gif │ │ │ ├── VariableLengthParameter.gif │ │ │ ├── Void.gif │ │ │ ├── Volatile.gif │ │ │ └── WhileLoop.gif │ ├── plugin.properties │ └── plugin.xml ├── org.emftext.language.java.resource.java.ui │ ├── .classpath │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── css │ │ └── hover_style.css │ ├── icons │ │ ├── auto_expand_icon.gif │ │ ├── collapse_all_icon.gif │ │ ├── default_new_icon.gif │ │ ├── editor_icon.gif │ │ ├── expand_all_icon.gif │ │ ├── group_types_icon.gif │ │ ├── link_with_editor_icon.gif │ │ ├── new_project_wizban.gif │ │ ├── occurrence_icon.gif │ │ └── sort_lexically_icon.gif │ ├── newProject.zip │ └── plugin.xml └── org.emftext.language.java.resource.jdt │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ └── org │ └── emftext │ └── language │ └── java │ └── resource │ └── jdt │ └── JDTConnector.java ├── Examples └── org.emftext.language.java.examples │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── lib │ └── java │ │ ├── lang │ │ └── package-info.java │ │ └── util │ │ └── package-info.java │ ├── models │ ├── ClassDiagram.uml │ ├── ClassDiagram.uml.Person.print.javabehavior │ ├── ClassDiagram.umldi │ ├── StateMachine.uml │ └── StateMachine.umldi │ ├── src-fragments-gen │ ├── de │ │ └── tudresden │ │ │ └── contact_management │ │ │ ├── Address.java │ │ │ ├── Company.java │ │ │ ├── Contact.java │ │ │ ├── ContactList.reusejava │ │ │ ├── Group.java │ │ │ ├── Person.java │ │ │ ├── Relationship.java │ │ │ ├── package-info.java │ │ │ └── package-info.java_diagram │ └── restrictions.ocl │ ├── src-fragments │ ├── contact_management.fc │ ├── contact_management.fcdi │ └── de │ │ └── tudresden │ │ └── fragments │ │ ├── ContactService.java │ │ ├── PrintAttribute.reusejava │ │ └── SynchroniseContacts.reusejava │ ├── src │ └── de │ │ └── tudresden │ │ └── contact_management │ │ └── impl │ │ ├── Address.java │ │ ├── Company.java │ │ ├── Contact.java │ │ ├── ContactList.java │ │ ├── Group.java │ │ ├── Person.java │ │ └── Relationship.java │ └── uml2java │ ├── build.xml │ ├── uml2java.atl │ └── uml2java.launch ├── Experimental ├── .gitignore └── org.emftext.language.java.resource.java.jdt.ui │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── css │ └── hover_style.css │ ├── icons │ ├── auto_expand_icon.gif │ ├── collapse_all_icon.gif │ ├── default_new_icon.gif │ ├── editor_icon.gif │ ├── expand_all_icon.gif │ ├── group_types_icon.gif │ ├── link_with_editor_icon.gif │ ├── new_project_wizban.gif │ ├── occurrence_icon.gif │ └── sort_lexically_icon.gif │ ├── newProject.zip │ ├── plugin.xml │ ├── src-gen │ └── org │ │ └── emftext │ │ └── language │ │ └── java │ │ └── resource │ │ └── java │ │ └── ui │ │ ├── AbstractJavaOutlinePageAction.java │ │ ├── IJavaAnnotationModelProvider.java │ │ ├── IJavaBracketHandler.java │ │ ├── IJavaBracketHandlerProvider.java │ │ ├── IJavaTokenScanner.java │ │ ├── JavaAdapterFactoryProvider.java │ │ ├── JavaAnnotationModel.java │ │ ├── JavaAnnotationModelFactory.java │ │ ├── JavaAntlrTokenHelper.java │ │ ├── JavaAutoEditStrategy.java │ │ ├── JavaBackgroundParsingStrategy.java │ │ ├── JavaBracketSet.java │ │ ├── JavaBrowserInformationControl.java │ │ ├── JavaCodeCompletionHelper.java │ │ ├── JavaColorManager.java │ │ ├── JavaCompletionProcessor.java │ │ ├── JavaCompletionProposal.java │ │ ├── JavaContentAssistPreferencePage.java │ │ ├── JavaDefaultHoverTextProvider.java │ │ ├── JavaDocBrowserInformationControlInput.java │ │ ├── JavaEObjectSelection.java │ │ ├── JavaEditingDomainProvider.java │ │ ├── JavaEditorConfiguration.java │ │ ├── JavaHTMLPrinter.java │ │ ├── JavaHoverTextProvider.java │ │ ├── JavaHyperlink.java │ │ ├── JavaHyperlinkDetector.java │ │ ├── JavaIgnoredWordsFilter.java │ │ ├── JavaImageProvider.java │ │ ├── JavaMarkerAnnotation.java │ │ ├── JavaMarkerResolutionGenerator.java │ │ ├── JavaNewFileWizard.java │ │ ├── JavaNewFileWizardPage.java │ │ ├── JavaNewProjectWizard.java │ │ ├── JavaNewProjectWizardLogic.java │ │ ├── JavaOccurrence.java │ │ ├── JavaOccurrencePreferencePage.java │ │ ├── JavaOutlinePage.java │ │ ├── JavaOutlinePageActionProvider.java │ │ ├── JavaOutlinePageAutoExpandAction.java │ │ ├── JavaOutlinePageCollapseAllAction.java │ │ ├── JavaOutlinePageExpandAllAction.java │ │ ├── JavaOutlinePageLexicalSortingAction.java │ │ ├── JavaOutlinePageLinkWithEditorAction.java │ │ ├── JavaOutlinePageTreeViewer.java │ │ ├── JavaOutlinePageTreeViewerComparator.java │ │ ├── JavaOutlinePageTypeSortingAction.java │ │ ├── JavaPixelConverter.java │ │ ├── JavaPositionCategory.java │ │ ├── JavaPositionHelper.java │ │ ├── JavaPreferenceConstants.java │ │ ├── JavaPreferenceInitializer.java │ │ ├── JavaPreferencePage.java │ │ ├── JavaPropertySheetPage.java │ │ ├── JavaPropertyTester.java │ │ ├── JavaProposalPostProcessor.java │ │ ├── JavaQuickAssistAssistant.java │ │ ├── JavaQuickAssistProcessor.java │ │ ├── JavaSourceViewerConfiguration.java │ │ ├── JavaSyntaxColoringHelper.java │ │ ├── JavaTextHover.java │ │ ├── JavaToggleCommentHandler.java │ │ ├── JavaTokenScanner.java │ │ ├── JavaUIMetaInformation.java │ │ ├── JavaUIPlugin.java │ │ ├── JavaUIResourceBundle.java │ │ ├── debug │ │ ├── JavaAdapterFactory.java │ │ ├── JavaDebugModelPresentation.java │ │ └── JavaLineBreakpointAdapter.java │ │ └── launch │ │ ├── JavaLaunchConfigurationMainTab.java │ │ ├── JavaLaunchConfigurationTabGroup.java │ │ └── JavaLaunchShortcut.java │ └── src │ └── org │ └── emftext │ └── language │ └── java │ └── resource │ └── java │ └── ui │ ├── JavaBracketPreferencePage.java │ ├── JavaCodeFoldingManager.java │ ├── JavaEditor.java │ ├── JavaHighlighting.java │ └── JavaSyntaxColoringPreferencePage.java ├── Features └── org.jamopp.features │ ├── .project │ └── features │ ├── org.emftext.language.java.jdt │ └── feature.xml │ ├── org.emftext.language.java.test │ └── feature.xml │ ├── org.emftext.language.java.ui │ └── feature.xml │ └── org.emftext.language.java │ └── feature.xml ├── README.md ├── Tests └── org.emftext.language.java.test │ ├── .checkstyle │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── formatter.cfg │ ├── src-input │ ├── AnnotationInstances.java │ ├── Annotations.java │ ├── AnnotationsAsAnnotationArguments.java │ ├── AnnotationsBetweenKeywords.java │ ├── AnnotationsForAnnotations.java │ ├── AnnotationsForEnums.java │ ├── AnnotationsForInnerTypes.java │ ├── AnnotationsForMethods.java │ ├── AnnotationsForParameters.java │ ├── AnnotationsForStatements.java │ ├── AnonymousEnum.java │ ├── AnonymousEnumWithArguments.java │ ├── AnonymousInner.java │ ├── Arguments.java │ ├── ArrayInitializers.java │ ├── ArraysInDeclarationsComplex.java │ ├── ArraysInDeclarationsSimple.java │ ├── AssertStatements.java │ ├── Assignments.java │ ├── BasicEnum.java │ ├── BasicEnumWithCommaAndSemicolonAtTheEnd.java │ ├── BasicEnumWithCommaAtTheEnd.java │ ├── BasicEnumWithSemicolonAtTheEnd.java │ ├── Blocks.java │ ├── BooleanAssignments.java │ ├── BooleanExpressions.java │ ├── Casting.java │ ├── ChainedCalls.java │ ├── Class$$$$With$$$$In$$$$Name$$$$$.java │ ├── ClassSemicolonOnly.java │ ├── ClassWith$$InName.java │ ├── ClassWith$InName.java │ ├── ClassWithDollarReferenced.java │ ├── ClassWithEnumeratingFieldDeclaration.java │ ├── Comments.java │ ├── CommentsAtEOF.java │ ├── CommentsBetweenCaseStatements.java │ ├── CommentsBetweenCatchClauses.java │ ├── CommentsBetweenConstructorArguments.java │ ├── CommentsBetweenMethodArguments.java │ ├── CommentsBetweenReferenceSequenceParts.java │ ├── CommentsInArrayInitializers.java │ ├── CommentsInFieldDeclaration.java │ ├── CommentsInParExpression.java │ ├── ConditionalExpressions.java │ ├── ConditionalStatements.java │ ├── ConstructorCalls.java │ ├── DeclarationStatements.java │ ├── EmptyClass.java │ ├── EmptyEnum.java │ ├── EmptyEnumWithSemicolon.java │ ├── EmptyInterface.java │ ├── EnumImplementingTwoInterfaces.java │ ├── EnumValueMethodsUse.java │ ├── EnumWithConstructor.java │ ├── EnumWithMember.java │ ├── EqualityExpression.java │ ├── ExceptionThrowing.java │ ├── ExplicitConstructorCalls.java │ ├── ExplicitGenericConstructorCalls.java │ ├── ExplicitGenericInvocation.java │ ├── Expressions.java │ ├── ExpressionsAsMethodArguments.java │ ├── ForEachLoop.java │ ├── FullQualifiedNameReferences.java │ ├── GenericConstructorCalls.java │ ├── GenericConstructors.java │ ├── GenericMethods.java │ ├── GenericSuperConstructors.java │ ├── IExtendsMultiple.java │ ├── IGenericMembers.java │ ├── IMembers.java │ ├── IOneMethod.java │ ├── ISemicolonOnly.java │ ├── ITwoPublicVoidMethods.java │ ├── IWithComments.java │ ├── Import1.java │ ├── Import2.java │ ├── InstanceOfArrayType.java │ ├── Interface1.java │ ├── Interface2.java │ ├── Interface3.java │ ├── InterfaceUse.java │ ├── JavaDocCommentBlock.java │ ├── JavaDocCommentInClass.java │ ├── JavaDocCommentInField.java │ ├── JumpLabelStatements.java │ ├── LegalIdentifiers.java │ ├── Literals.java │ ├── LocalVariableDeclarations.java │ ├── LoopStatements.java │ ├── Members.java │ ├── MethodCallsWithLocalTypeReferences.java │ ├── MethodOverride.java │ ├── Modifiers.java │ ├── MultipleImplements.java │ ├── Multiplications.java │ ├── NoTypeArgument.java │ ├── ParametersWithModifiers.java │ ├── PrimitiveTypeArrays.java │ ├── RoundedLiterals.java │ ├── SemicolonAfterExpressions.java │ ├── SemicolonAfterMembers.java │ ├── SimpleAnnotations.java │ ├── SimpleMethodCalls.java │ ├── SpecialCharacters.java │ ├── StaticImports.java │ ├── StringLiteralReferencing.java │ ├── SuperKeyword.java │ ├── SwitchStatements.java │ ├── Synchronized.java │ ├── SynchronizedStatements.java │ ├── TempLiterals.java │ ├── ThrowStatements.java │ ├── TryCatchStatements.java │ ├── TypeParameters.java │ ├── TypeReferencing.java │ ├── TypeReferencingExternal.java │ ├── UnaryExpressions.java │ ├── UnicodeSurrogateCharacters.java │ ├── VariableLengthArgumentList.java │ ├── VariableReferencing.java │ ├── bugs │ │ └── Bug1695.java │ ├── locations │ │ └── Location.java │ ├── pkg │ │ ├── ClassWith$In$$Pkg.java │ │ ├── CrazyUnicode.java │ │ ├── EmptyClass.java │ │ ├── EscapedStrings.java │ │ ├── NumberLiterals.java │ │ ├── PackageAnnotation.java │ │ ├── UsingAnnotations.java │ │ ├── inner │ │ │ ├── ClassWith$In$$Inner$Pkg.java │ │ │ └── Inner.java │ │ └── package-info.java │ ├── pkg2 │ │ ├── package-info.java │ │ └── pkg3 │ │ │ ├── PackageAnnotation.java │ │ │ ├── Pkg2Enum.java │ │ │ └── pkg4 │ │ │ ├── PackageAnnotation.java │ │ │ └── package-info.java │ ├── resolving │ │ ├── MethodCalls.java │ │ ├── MethodCallsWithLocalTypeReferences.java │ │ ├── MethodCallsWithoutInheritance.java │ │ ├── ReferenceToInheritedMethod.java │ │ ├── VariableReferencing.java │ │ └── importResolverTest │ │ │ └── JavaUtilEnumerationImport.java │ ├── resolving_new │ │ ├── arrayParameters_2 │ │ │ └── AClass.java │ │ ├── autoboxingA_1 │ │ │ └── AClass.java │ │ ├── autoboxingB_1 │ │ │ └── AClass.java │ │ ├── fields_2 │ │ │ └── AClass.java │ │ ├── methodOverloading_2 │ │ │ └── MethodOverloading.java │ │ ├── methodParameters_4 │ │ │ └── LocalCalls.java │ │ ├── methods_1 │ │ │ ├── Callee.java │ │ │ └── Caller.java │ │ ├── polymorphism_2 │ │ │ ├── Caller.java │ │ │ ├── SubClassA.java │ │ │ ├── SubClassB.java │ │ │ └── SuperClass.java │ │ ├── shadowedField_1 │ │ │ └── AClass.java │ │ ├── staticImportA_2 │ │ │ ├── Exporter.java │ │ │ └── Importer.java │ │ ├── staticImportB_2 │ │ │ ├── Exporter.java │ │ │ └── Importer.java │ │ ├── superclassmethod_2 │ │ │ ├── SubClass.java │ │ │ └── SuperClass.java │ │ ├── typeArgumentsA_1 │ │ │ ├── GenericClass.java │ │ │ └── SimpleClass.java │ │ ├── typeparametersA_2 │ │ │ └── GenericClass.java │ │ ├── typeparametersB_1 │ │ │ ├── Caller.java │ │ │ ├── ClassA.java │ │ │ ├── GenericSuperClass.java │ │ │ └── SubClass.java │ │ ├── typeparametersC_0 │ │ │ ├── Caller.java │ │ │ └── CollectionsSource.java │ │ └── variableLengthParameters_2 │ │ │ └── AClass.java │ └── unicode │ │ ├── ControlZ.java │ │ ├── MoreUnicodeCharacters.java │ │ ├── Unicode.java │ │ └── UnicodeIdentifiers.java │ └── src │ └── org │ └── emftext │ └── language │ └── java │ ├── IdentifierRegexGenerator.java │ └── test │ ├── AbstractJavaParserTestCase.java │ ├── AutomatedJavaLanguageFeatureTest.java │ ├── JavaLanguageFeatureTest.java │ ├── JavaLanguageFeatureTestWithoutReprinting.java │ ├── JavaParserTestPlugin.java │ ├── OrderedJavaLanguageFeatureTest.java │ ├── PrintCommentsInEmptyMethodTest.java │ ├── TalkativeASTMatcher.java │ ├── UnicodeConverterTest.java │ ├── UnicodeTest.java │ ├── analysis │ ├── JavaCHARACTER_LITERALTokenResolverTest.java │ ├── JavaSTRING_LITERALTokenResolverTest.java │ └── NumberLiteralResolverTest.java │ ├── bugs │ ├── AbstractTestCase.java │ ├── Bug1264Test.java │ ├── Bug1415Test.java │ ├── Bug1541Test.java │ ├── Bug1818Test.java │ ├── Bug1819Test.java │ └── Bug1834Test.java │ ├── locations │ └── LocationTest.java │ ├── resolving │ ├── AbstractResolverTestCase.java │ ├── ImportResolverTest.java │ ├── MethodCallResolverTest.java │ ├── MethodCallWithoutInheritanceResolverTest.java │ ├── MethodCallsWithLocalTypeReferencesResolverTest.java │ ├── ReferenceToInheritedMethodTest.java │ └── VariableReferenceResolverTest.java │ ├── resolving_new │ └── ResolvingTest.java │ ├── util │ ├── MetamodelAnalyzer.java │ └── ThreadedSuite.java │ └── xmi │ └── JavaXMISerializationTest.java └── Utils └── org.emftext.language.java.jamoppc ├── .classpath ├── .project ├── build.xml ├── jamoppc.jar └── src └── org └── emftext └── language └── java └── jamoppc └── JaMoPPC.java /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | bin/ 3 | src-gen/ -------------------------------------------------------------------------------- /Build/org.jamopp.build.juno/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.jamopp.build.juno 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Build/org.jamopp.build.kepler/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.jamopp.build.kepler 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Build/org.jamopp.build.luna/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Luna 4 | Bundle-SymbolicName: org.jamopp.build.luna 5 | Bundle-Version: 1.0.0.qualifier 6 | -------------------------------------------------------------------------------- /Build/org.jamopp.build.luna/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/ 2 | -------------------------------------------------------------------------------- /Build/org.jamopp.build/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.jamopp.build 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Core/org.emftext.language.java.resource.bcel/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src-bcel/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /Core/org.emftext.language.java.resource.java/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | #Thu Aug 14 14:18:19 CEST 2008 2 | eclipse.preferences.version=1 3 | formatter_profile=_restrictivProfile 4 | formatter_settings_version=11 5 | -------------------------------------------------------------------------------- /Core/org.emftext.language.java.resource.java/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | .,\ 3 | plugin.xml 4 | source.. = src/,src-gen/ 5 | -------------------------------------------------------------------------------- /Core/org.emftext.language.java.resource/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /Core/org.emftext.language.java/documentation/2008-08-22 Meeting Agenda.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Core/org.emftext.language.java/documentation/2008-08-22 Meeting Agenda.doc -------------------------------------------------------------------------------- /Core/org.emftext.language.java/documentation/EMFText Development Setup.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Core/org.emftext.language.java/documentation/EMFText Development Setup.docx -------------------------------------------------------------------------------- /Core/org.emftext.language.java/metamodel/java.newfile.java: -------------------------------------------------------------------------------- 1 | public class HelloWorld { 2 | 3 | public static void main(String[] args) { 4 | System.out.println("Hello world!"); 5 | } 6 | } -------------------------------------------------------------------------------- /Core/org.emftext.language.java/plugin.properties: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # 4 | # 5 | # $Id$ 6 | 7 | pluginName = Java Model 8 | providerName = www.example.org 9 | -------------------------------------------------------------------------------- /Core/org.emftext.language.java/templates/model/Class/basicGetGenFeature.TODO.override.javajetinc: -------------------------------------------------------------------------------- 1 | <%@ include file="getGenFeature.TODO.override.javajetinc" fail="alternative" %> -------------------------------------------------------------------------------- /Core/org.emftext.language.java/templates/model/Class/basicSetGenFeature.TODO.override.javajetinc: -------------------------------------------------------------------------------- 1 | <%@ include file="setGenFeature.TODO.override.javajetinc" fail="alternative" %> 2 | return msgs; -------------------------------------------------------------------------------- /Deploy/org.jamopp.deploy/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.jamopp.deploy 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Deploy/org.jamopp.deploy/build.properties: -------------------------------------------------------------------------------- 1 | baseDir=C:/daten/projekte2/mavenize-eclipse-bundle 2 | mvnCommand=cmd /c mvn.bat 3 | mvnBinDir=C:/daten/maven/program/bin" -------------------------------------------------------------------------------- /Deploy/org.jamopp.deploy/site.deployment: -------------------------------------------------------------------------------- 1 | site/snapshot = false 2 | 3 | site/vendor = DevBoost GmbH 4 | site/uploadPath = update.jamopp.org:/home/jenkins/public/jamopp/trunk 5 | site/usernameProperty = DEVBOOST_UPLOAD_USER 6 | site/passwordProperty = DEVBOOST_UPLOAD_PASS 7 | -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | *.xml,\ 6 | . 7 | -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/html/figures/JaMoPPLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/html/figures/JaMoPPLogo.png -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/logo/jamopp_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/logo/jamopp_icon.psd -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/logo/jamopp_logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/logo/jamopp_logo.ai -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/logo/jamopp_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/logo/jamopp_logo.pdf -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/logo/jamopp_logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/logo/jamopp_logo.psd -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/publications/2009_JaMoPP_The_Java_Model_Parser_and_Printer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/publications/2009_JaMoPP_The_Java_Model_Parser_and_Printer.pdf -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/publications/2009_REM_JaMoPPReverse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/publications/2009_REM_JaMoPPReverse.pdf -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/publications/2009_SLE_JaMoPP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/publications/2009_SLE_JaMoPP.pdf -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/publications/2011_MDSM_JaMoPPModernise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Doc/org.emftext.language.java.doc/publications/2011_MDSM_JaMoPPModernise.pdf -------------------------------------------------------------------------------- /Doc/org.emftext.language.java.doc/toc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAdditiveExpression_children_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAdditiveExpression_children_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAndExpression_children_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArgumentable_arguments_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateArraySelector_position_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_AdditiveExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_AdditiveExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_AnnotationInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_AnnotationInstance.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_DecimalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_DecimalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_EqualityExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_EqualityExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_NewConstructorCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_NewConstructorCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_RelationExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_RelationExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssert_errorMessage_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_child_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_child_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_child_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_child_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_value_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_value_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_value_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateAssignmentExpression_value_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCastExpression_child_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCatchBlock_parameter_OrdinaryParameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCatchBlock_parameter_OrdinaryParameter.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Boolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Boolean.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Byte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Byte.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Char.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Char.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_ClassifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_ClassifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Double.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Float.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Float.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Long.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Short.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateClass_extends_Void.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCompilationUnit_classifiers_Annotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCompilationUnit_classifiers_Annotation.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCompilationUnit_classifiers_Class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCompilationUnit_classifiers_Class.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCompilationUnit_classifiers_Interface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCompilationUnit_classifiers_Interface.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Annotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Annotation.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Assert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Assert.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Block.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Break.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Break.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Class.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Condition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Condition.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Continue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Continue.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_DoWhileLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_DoWhileLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_EmptyStatement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_EmptyStatement.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Enumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Enumeration.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_ForEachLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_ForEachLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_ForLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_ForLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Interface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Interface.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_JumpLabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_JumpLabel.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Return.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Switch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Switch.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Throw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_Throw.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_TryBlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_TryBlock.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_WhileLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateCondition_elseStatement_WhileLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditionalExpression_child_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditionalExpression_child_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateConditional_condition_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateEnumeration_constants_EnumConstant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateEnumeration_constants_EnumConstant.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateExtendsTypeArgument_extendTypes_Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateExtendsTypeArgument_extendTypes_Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForEachLoop_collection_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForEachLoop_collection_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForEachLoop_collection_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForEachLoop_collection_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForEachLoop_next_OrdinaryParameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForEachLoop_next_OrdinaryParameter.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_init_ExpressionList.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_init_ExpressionList.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_init_LocalVariable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_init_LocalVariable.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_AdditiveExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_AdditiveExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_AnnotationInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_AnnotationInstance.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_DecimalFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_DecimalFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_DecimalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_DecimalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_EqualityExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_EqualityExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_IdentifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_IdentifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_NewConstructorCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_NewConstructorCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_OctalIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_OctalIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_RelationExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_RelationExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateForLoop_updates_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Boolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Boolean.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Byte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Byte.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Char.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Char.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Double.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Float.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Float.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Long.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Short.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateImplementor_implements_Void.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Boolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Boolean.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Byte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Byte.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Char.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Char.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Double.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Float.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Float.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Long.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Short.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateInterface_extends_Void.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Annotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Annotation.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Block.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Class.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_ClassMethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_ClassMethod.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Constructor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Constructor.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_EmptyMember.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_EmptyMember.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Enumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Enumeration.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Field.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Interface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateMemberContainer_members_Interface.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Abstract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Abstract.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Final.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Final.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Native.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Native.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Private.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Private.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Protected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Protected.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Public.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Public.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Static.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Strictfp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Strictfp.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Synchronized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Synchronized.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Transient.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Transient.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Volatile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateModifiable_modifiers_Volatile.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_AnnotationInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_AnnotationInstance.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_IdentifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_IdentifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_NewConstructorCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_NewConstructorCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReference_next_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateReturn_returnValue_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSelfReference_self_Super.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSelfReference_self_Super.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSelfReference_self_This.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSelfReference_self_This.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateShiftExpression_children_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateShiftExpression_children_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Assert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Assert.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Block.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Break.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Break.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Class.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Return.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Switch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Switch.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Throw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStatementContainer_statement_Throw.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStaticImport_static_Static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateStaticImport_static_Static.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Boolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Boolean.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Byte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Byte.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Char.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Char.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Double.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Float.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Float.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Long.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Short.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSuperTypeArgument_superType_Void.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_cases_DefaultSwitchCase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_cases_DefaultSwitchCase.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_cases_NormalSwitchCase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_cases_NormalSwitchCase.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_AdditiveExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_AdditiveExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_AnnotationInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_AnnotationInstance.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_DecimalFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_DecimalFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_DecimalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_DecimalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_EqualityExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_EqualityExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_IdentifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_IdentifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_NewConstructorCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_NewConstructorCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_OctalIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_OctalIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_RelationExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_RelationExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateSwitch_variable_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_AdditiveExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_AdditiveExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_AnnotationInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_AnnotationInstance.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_DecimalFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_DecimalFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_DecimalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_DecimalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_EqualityExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_EqualityExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_IdentifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_IdentifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_NewConstructorCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_NewConstructorCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_OctalIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_OctalIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_RelationExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_RelationExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateThrow_throwable_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTryBlock_catcheBlocks_CatchBlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTryBlock_catcheBlocks_CatchBlock.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTryBlock_finallyBlock_Block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTryBlock_finallyBlock_Block.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Boolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Boolean.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Byte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Byte.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Char.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Char.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Double.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Float.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Float.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Long.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Short.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypeParameter_extendTypes_Void.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Boolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Boolean.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Byte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Byte.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Char.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Char.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Double.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Float.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Float.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Long.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Short.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateTypedElement_typeReference_Void.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_child_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_child_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_child_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_child_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_child_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_child_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_operators_Addition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_operators_Addition.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_operators_Negate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateUnaryExpression_operators_Negate.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/ctool16/CreateWhileLoop_condition_UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Abstract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Abstract.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Addition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Addition.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AdditionalField.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AdditionalField.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AdditionalLocalVariable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AdditionalLocalVariable.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AdditiveExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AdditiveExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Annotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Annotation.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationAttribute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationAttribute.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationAttributeSetting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationAttributeSetting.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationInstance.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationParameterList.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnnotationParameterList.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnonymousClass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AnonymousClass.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayDimension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayDimension.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInitializer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInitializer.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInstantiationBySize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInstantiationBySize.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInstantiationByValuesTyped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInstantiationByValuesTyped.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInstantiationByValuesUntyped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArrayInstantiationByValuesUntyped.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArraySelector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ArraySelector.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Assert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Assert.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Assignment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Assignment.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentAnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentAnd.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentDivision.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentDivision.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentExclusiveOr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentExclusiveOr.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentLeftShift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentLeftShift.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentMinus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentMinus.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentModulo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentModulo.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentMultiplication.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentMultiplication.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentOr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentOr.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentPlus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentPlus.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentRightShift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentRightShift.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentUnsignedRightShift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/AssignmentUnsignedRightShift.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Block.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Boolean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Boolean.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/BooleanLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/BooleanLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Break.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Break.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Byte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Byte.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CastExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CastExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CatchBlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CatchBlock.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Char.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Char.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CharacterLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CharacterLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Class.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ClassMethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ClassMethod.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ClassifierImport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ClassifierImport.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ClassifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ClassifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CompilationUnit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/CompilationUnit.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Complement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Complement.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Condition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Condition.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ConditionalAndExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ConditionalAndExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ConditionalExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ConditionalExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ConditionalOrExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ConditionalOrExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Constructor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Constructor.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Continue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Continue.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DecimalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DefaultSwitchCase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DefaultSwitchCase.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Division.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Division.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DoWhileLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/DoWhileLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Double.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Double.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EmptyMember.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EmptyMember.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EmptyModel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EmptyModel.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EmptyStatement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EmptyStatement.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EnumConstant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EnumConstant.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Enumeration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Enumeration.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Equal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Equal.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EqualityExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/EqualityExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExclusiveOrExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExclusiveOrExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExplicitConstructorCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExplicitConstructorCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExpressionList.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExpressionList.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExpressionStatement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExpressionStatement.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExtendsTypeArgument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ExtendsTypeArgument.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Field.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Final.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Final.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Float.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Float.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ForEachLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ForEachLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ForLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ForLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/GreaterThan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/GreaterThan.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/GreaterThanOrEqual.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/GreaterThanOrEqual.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexDoubleLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexDoubleLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexFloatLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexFloatLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/HexLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/IdentifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/IdentifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/InclusiveOrExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/InclusiveOrExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/InstanceOfExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/InstanceOfExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Int.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Interface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Interface.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/InterfaceMethod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/InterfaceMethod.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/JumpLabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/JumpLabel.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LeftShift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LeftShift.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LessThan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LessThan.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LessThanOrEqual.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LessThanOrEqual.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LocalVariable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LocalVariable.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LocalVariableStatement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/LocalVariableStatement.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Long.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/MethodCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/MethodCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/MinusMinus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/MinusMinus.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Multiplication.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Multiplication.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/MultiplicativeExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/MultiplicativeExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NamespaceClassifierReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NamespaceClassifierReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Native.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Native.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Negate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Negate.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NestedExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NestedExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NewConstructorCall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NewConstructorCall.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NormalSwitchCase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NormalSwitchCase.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NotEqual.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NotEqual.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NullLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/NullLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/OctalIntegerLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/OctalIntegerLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/OctalLongLiteral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/OctalLongLiteral.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/OrdinaryParameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/OrdinaryParameter.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Package.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Package.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PackageImport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PackageImport.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PackageReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PackageReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PlusPlus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PlusPlus.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PrefixUnaryModificationExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PrefixUnaryModificationExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PrimitiveTypeReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/PrimitiveTypeReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Private.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Private.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Protected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Protected.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Public.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Public.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/QualifiedTypeArgument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/QualifiedTypeArgument.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ReflectiveClassReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ReflectiveClassReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/RelationExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/RelationExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Remainder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Remainder.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Return.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/RightShift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/RightShift.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SelfReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SelfReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ShiftExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/ShiftExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Short.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SingleAnnotationParameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SingleAnnotationParameter.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Static.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/StaticClassifierImport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/StaticClassifierImport.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/StaticMemberImport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/StaticMemberImport.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Strictfp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Strictfp.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/StringReference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/StringReference.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Subtraction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Subtraction.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SuffixUnaryModificationExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SuffixUnaryModificationExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Super.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Super.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SuperTypeArgument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SuperTypeArgument.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Switch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Switch.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Synchronized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Synchronized.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SynchronizedBlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/SynchronizedBlock.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/This.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/This.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Throw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Throw.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Transient.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Transient.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/TryBlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/TryBlock.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/TypeParameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/TypeParameter.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/UnaryExpression.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/UnaryExpression.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/UnknownTypeArgument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/UnknownTypeArgument.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/UnsignedRightShift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/UnsignedRightShift.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/VariableLengthParameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/VariableLengthParameter.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Void.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Volatile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/Volatile.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/WhileLoop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.edit/icons/full/obj16/WhileLoop.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | .,\ 3 | icons/,\ 4 | css/,\ 5 | newProject.zip,\ 6 | plugin.xml 7 | source.. = src/,src-gen/ 8 | -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/auto_expand_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/auto_expand_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/collapse_all_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/collapse_all_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/default_new_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/default_new_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/editor_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/editor_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/expand_all_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/expand_all_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/group_types_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/group_types_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/link_with_editor_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/link_with_editor_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/new_project_wizban.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/new_project_wizban.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/occurrence_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/occurrence_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/sort_lexically_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/icons/sort_lexically_icon.gif -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.java.ui/newProject.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Eclipse-Integration/org.emftext.language.java.resource.java.ui/newProject.zip -------------------------------------------------------------------------------- /Eclipse-Integration/org.emftext.language.java.resource.jdt/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /Examples/org.emftext.language.java.examples/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Examples/org.emftext.language.java.examples/.gitignore: -------------------------------------------------------------------------------- 1 | *.asm 2 | src-gen.java -------------------------------------------------------------------------------- /Examples/org.emftext.language.java.examples/src-fragments/de/tudresden/fragments/SynchroniseContacts.reusejava: -------------------------------------------------------------------------------- 1 | statements SynchroniseContacts { 2 | contact_management. 3 | ContactService. 4 | mergeWithExternalContacts(); 5 | } -------------------------------------------------------------------------------- /Experimental/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | bin/ 3 | !src-gen/ -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | bin/ -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | .,\ 3 | icons/,\ 4 | css/,\ 5 | newProject.zip,\ 6 | plugin.xml 7 | source.. = src/,src-gen/ 8 | -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/auto_expand_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/auto_expand_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/collapse_all_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/collapse_all_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/default_new_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/default_new_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/editor_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/editor_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/expand_all_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/expand_all_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/group_types_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/group_types_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/link_with_editor_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/link_with_editor_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/new_project_wizban.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/new_project_wizban.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/occurrence_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/occurrence_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/sort_lexically_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/icons/sort_lexically_icon.gif -------------------------------------------------------------------------------- /Experimental/org.emftext.language.java.resource.java.jdt.ui/newProject.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Experimental/org.emftext.language.java.resource.java.jdt.ui/newProject.zip -------------------------------------------------------------------------------- /Features/org.jamopp.features/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.jamopp.features 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Tests/org.emftext.language.java.test/.gitignore: -------------------------------------------------------------------------------- 1 | /output 2 | -------------------------------------------------------------------------------- /Tests/org.emftext.language.java.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Wed Mar 07 15:52:17 CET 2012 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /Tests/org.emftext.language.java.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/,\ 2 | src-input/ 3 | output.. = bin/ 4 | bin.includes = META-INF/,\ 5 | . 6 | -------------------------------------------------------------------------------- /Utils/org.emftext.language.java.jamoppc/jamoppc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevBoost/JaMoPP/8bc07e8407993e463323a5e0325540bed839502a/Utils/org.emftext.language.java.jamoppc/jamoppc.jar --------------------------------------------------------------------------------