OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PropertyCategory
(Results
1 - 7
of
7
) sorted by null
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategory.java
22
public final class
PropertyCategory
{
26
public static final
PropertyCategory
NORMAL = new
PropertyCategory
(0, "NORMAL");
30
public static final
PropertyCategory
PREFERRED = new
PropertyCategory
(-1, "PREFERRED");
35
public static final
PropertyCategory
ADVANCED = new
PropertyCategory
(1, "ADVANCED");
39
public static final
PropertyCategory
ADVANCED_REALLY = new
PropertyCategory
(2, "ADVANCED_REALLY");
43
public static final
PropertyCategory
HIDDEN = new PropertyCategory(3, "HIDDEN")
[
all
...]
PropertyCategoryProviders.java
29
public
PropertyCategory
getCategory(Property property) {
42
public
PropertyCategory
getCategory(Property property) {
64
public
PropertyCategory
getCategory(Property property) {
66
PropertyCategory
category = provider.getCategory(property);
PropertyCategoryProvider.java
16
* This interface is used to get {@link
PropertyCategory
} for {@link Property}.
23
* @return the {@link
PropertyCategory
} of given Property, not <code>null</code>.
25
PropertyCategory
getCategory(Property property);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
PropertyManager.java
13
import org.eclipse.wb.internal.core.model.property.category.
PropertyCategory
;
23
public static
PropertyCategory
getCategory(Property property) {
31
* @return the forced {@link
PropertyCategory
} of given Property, may be <code>null</code>.
33
public static
PropertyCategory
getCategoryForced(Property property) {
Property.java
15
import org.eclipse.wb.internal.core.model.property.category.
PropertyCategory
;
51
m_category =
PropertyCategory
.NORMAL;
75
private
PropertyCategory
m_category;
78
* @return current {@link
PropertyCategory
}.
80
public final
PropertyCategory
getCategory() {
85
* Sets the {@link
PropertyCategory
} for this {@link Property}.
87
public final void setCategory(
PropertyCategory
category) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java
55
import org.eclipse.wb.internal.core.model.property.category.
PropertyCategory
;
217
PropertyCategory
category =
PropertyCategory
.NORMAL;
220
category =
PropertyCategory
.PREFERRED;
230
category =
PropertyCategory
.PREFERRED;
232
category =
PropertyCategory
.ADVANCED;
317
if (property.getCategory() ==
PropertyCategory
.PREFERRED) {
377
PropertyCategory
c = p.getCategory();
378
if (c !=
PropertyCategory
.ADVANCED) {
381
if (c ==
PropertyCategory
.PREFERRED)
[
all
...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTable.java
43
import org.eclipse.wb.internal.core.model.property.category.
PropertyCategory
;
778
* Shows or hides {@link Property}-s with {@link
PropertyCategory
#ADVANCED}.
860
PropertyCategory
category = getCategory(property);
959
* @return the {@link
PropertyCategory
} that is used by this {@link PropertyTable} to display.
961
public
PropertyCategory
forTests_getCategory(Property property) {
[
all
...]
Completed in 640 milliseconds