blob: deee28fedcfa1e9ee87d1602aafa17dee37256f1 [file] [log] [blame]
package org.eclipse.dltk.validators.internal.externalchecker.core;
public class WildcardToken {
private String type;
private Object value;
public WildcardToken(String t, Object v){
this.setType(t);
this.setValue(v);
}
private void setType(String type) {
this.type = type;
}
public String getType() {
return type;
}
public void setValue(Object value) {
this.value = value;
}
public Object getValue() {
return value;
}
}