removed readonly and required attributes, started with r1339666

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1339872 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2012-05-17 21:45:16 +00:00
parent c63c9e01fb
commit 53dfd41c54
1 changed files with 0 additions and 24 deletions

View File

@ -35,10 +35,6 @@ public class ComponentAnnotationContent
private String roleHint;
private boolean required = false;
private boolean readonly = false;
public ComponentAnnotationContent( String fieldName )
{
super( fieldName );
@ -76,26 +72,6 @@ public class ComponentAnnotationContent
return null;
}
public boolean required()
{
return required;
}
public void required( boolean required )
{
this.required = required;
}
public boolean readonly()
{
return readonly;
}
public void readonly( boolean readonly )
{
this.readonly = readonly;
}
@Override
public String toString()
{