Examples of IJavaType


Examples of org.eclipse.jdt.debug.core.IJavaType

   * @return the <code>IJavaReferenceType</code> from the specified
   *         <code>IJavaObject</code>
   */
  private IJavaReferenceType getType(IJavaObject value) {
    try {
      IJavaType type = value.getJavaType();
      if (!(type instanceof IJavaClassType)) {
        return null;
      }
      IJavaClassType classType = (IJavaClassType) type;
      if (classType.getName().equals(fType)) {
View Full Code Here

Examples of org.eclipse.jdt.debug.core.IJavaType

    fQualifiedTypeName = qualifiedTypeName;
  }

  @Override
  public void execute() throws CoreException {
    IJavaType receiver = getType(fQualifiedTypeName);

    IJavaVariable field = null;

    if (receiver instanceof IJavaInterfaceType) {
      field = ((IJavaInterfaceType) receiver).getField(fFieldName);
View Full Code Here

Examples of org.eclipse.jdt.debug.core.IJavaType

      return new ILogicalStructureType[0];
    }
    IJavaObject javaValue = (IJavaObject) value;
    List<JavaLogicalStructure> logicalStructures = new ArrayList<JavaLogicalStructure>();
    try {
      IJavaType type = javaValue.getJavaType();
      if (!(type instanceof IJavaClassType)) {
        return new ILogicalStructureType[0];
      }
      IJavaClassType classType = (IJavaClassType) type;
      List<JavaLogicalStructure> list = fJavaLogicalStructureMap
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.