blob: 96e63d466c3fdd0b02a0ed33ff7eb8088d2e1373 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.astview.views;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jdt.core.dom.AST;
import org.eclipse.jdt.core.dom.CompilationUnit;
public class WellKnownTypesProperty extends ASTAttribute {
public static final String[] WELL_KNOWN_TYPES = {
"boolean",
"byte",
"char",
"double",
"float",
"int",
"long",
"short",
"void",
"java.lang.Boolean",
"java.lang.Byte",
"java.lang.Character",
"java.lang.Class",
"java.lang.Cloneable",
"java.lang.Double",
"java.lang.Error",
"java.lang.Exception",
"java.lang.Float",
"java.lang.Integer",
"java.lang.Long",
"java.lang.Object",
"java.lang.RuntimeException",
"java.lang.Short",
"java.lang.String",
"java.lang.StringBuffer",
"java.lang.Throwable",
"java.lang.Void",
"java.io.Serializable",
"_.$UnknownType$"
};
private final CompilationUnit fRoot;
public WellKnownTypesProperty(CompilationUnit root) {
fRoot= root;
}
@Override
public Object getParent() {
return fRoot;
}
@Override
public Object[] getChildren() {
AST ast= fRoot.getAST();
Binding[] res= new Binding[WELL_KNOWN_TYPES.length];
for (int i= 0; i < WELL_KNOWN_TYPES.length; i++) {
String type= WELL_KNOWN_TYPES[i];
res[i]= new Binding(this, type, ast.resolveWellKnownType(type), true);
}
return res;
}
@Override
public String getLabel() {
return "> RESOLVE_WELL_KNOWN_TYPES"; //$NON-NLS-1$
}
@Override
public Image getImage() {
return null;
}
/*
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null || !obj.getClass().equals(getClass())) {
return false;
}
return true;
}
/*
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
return 57;
}
}