Home | History | Annotate | Download | only in beans

Lines Matching full:boolean

33     private boolean constrained;
35 private boolean bound;
156 public boolean equals(Object object) {
157 boolean result = (object != null && object instanceof PropertyDescriptor);
160 boolean gettersAreEqual = (this.getter == null) && (pd.getReadMethod() == null)
162 boolean settersAreEqual = (this.setter == null) && (pd.getWriteMethod() == null)
164 boolean propertyTypesAreEqual = this.getPropertyType() == pd.getPropertyType();
165 boolean propertyEditorClassesAreEqual = this.getPropertyEditorClass() == pd
167 boolean boundPropertyAreEqual = this.isBound() == pd.isBound();
168 boolean constrainedPropertyAreEqual = this.isConstrained() == pd.isConstrained();
195 public void setConstrained(boolean constrained) {
199 public void setBound(boolean bound) {
203 public boolean isConstrained() {
207 public boolean isBound() {
211 boolean hasMethod(Class<?> beanClass, String methodName) {
243 boolean result = false;
258 boolean result = false;