private Object parent;
private Position position;
+
/**
* Create a new field.
* @param vars the array of variables.
* @return the image that represents a php variable
*/
public ImageDescriptor getImage() {
- return PHPUiImages.DESC_VAR;
+ return PHPUiImages.DESC_VAR;
}
public Object getParent() {
return position;
}
- /**
+ /**
* Get the variables from outside (parameters, globals ...)
- * @return the variables from outside
*/
- public List getOutsideVariable() {
- return new ArrayList();
+ public void getOutsideVariable(final List list) {
}
/**
* get the modified variables.
- * @return the variables from we change value
*/
- public List getModifiedVariable() {
- return new ArrayList();
+ public void getModifiedVariable(final List list) {
}
/**
* Get the variables used.
- * @return the variables used
*/
- public List getUsedVariable() {
- return new ArrayList();
+ public void getUsedVariable(final List list) {
}
}