Home | History | Annotate | Download | only in category

Lines Matching refs:property

11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.PropertyManager;
20 * @coverage core.model.property
29 public PropertyCategory getCategory(Property property) {
30 return property.getCategory();
35 * Returns result of {@link Property#getCategory()}, never <code>null</code>.
42 public PropertyCategory getCategory(Property property) {
43 return PropertyManager.getCategoryForced(property);
64 public PropertyCategory getCategory(Property property) {
66 PropertyCategory category = provider.getCategory(property);
71 throw new IllegalStateException("Can not provide category for " + property.getTitle());