blob: 1c8f5d88e22f678e9c393f14ed2e8b4e6bae0d9b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.astview.views;
import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.jsdt.core.dom.AST;
import org.eclipse.wst.jsdt.core.dom.JavaScriptUnit;
public class WellKnownTypesProperty extends ASTAttribute {
public static final String[] WELL_KNOWN_TYPES = {
"Object",
"Boolean",
"Function",
"Global",
"Number",
"String",
"_.$UnknownType$"
};
private final JavaScriptUnit fRoot;
public WellKnownTypesProperty(JavaScriptUnit root) {
fRoot= root;
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.astview.views.ASTAttribute#getParent()
*/
public Object getParent() {
return fRoot;
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.astview.views.ASTAttribute#getChildren()
*/
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;
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.astview.views.ASTAttribute#getLabel()
*/
public String getLabel() {
return "> RESOLVE_WELL_KNOWN_TYPES"; //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.astview.views.ASTAttribute#getImage()
*/
public Image getImage() {
return null;
}
/*
* @see java.lang.Object#equals(java.lang.Object)
*/
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()
*/
public int hashCode() {
return 57;
}
}