remove obsolete commented code.

This commit is contained in:
j2blake 2011-04-04 20:11:36 +00:00
parent 52a008cf3c
commit c0beb99720

View file

@ -34,52 +34,5 @@ public class DropDataPropStmt extends AbstractDataPropertyAction {
public String lang(){ return dataPropStmt.getLanguage(); } public String lang(){ return dataPropStmt.getLanguage(); }
public String datatype(){return dataPropStmt.getDatatypeURI(); } public String datatype(){return dataPropStmt.getDatatypeURI(); }
/* // TODO: needs to be fixed to work with lang/datatype literals
* TODO: needs to be fixed to work with lang/datatype literals
*/
/*
protected String resourceUri;
protected String dataPropUri;
protected String value;
//TODO: needs to be fixed to work with lang/datatype literals
public DropDataPropStmt(String resourceUri, String dataPropUri, String value) {
super();
this.resourceUri = resourceUri;
this.dataPropUri = dataPropUri;
this.value = value;
}
public String getDataPropUri() {
return dataPropUri;
}
public void setDataPropUri(String dataPropUri) {
this.dataPropUri = dataPropUri;
}
public String getResourceUri() {
return resourceUri;
}
public void setResourceUri(String resourceUri) {
this.resourceUri = resourceUri;
}
//TODO: needs to be fixed to work with lang/datatype literals
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getURI() {
return RequestActionConstants.actionNamespace + this.getClass().getName();
}
public PolicyDecision accept(PolicyIface policy, IdentifierBundle ids){
return policy.visit(ids,this);
} */
} }