Searched refs:PropertyDescriptor (Results 1 – 25 of 32) sorted by relevance
12
18 import org.eclipse.ui.views.properties.PropertyDescriptor;41 …private static final PropertyDescriptor DIM_COUNT_DESCRIPTOR = new PropertyDescriptor(P_ID_COUNT, …42 …private static final PropertyDescriptor DIM_AVERAGE_DESCRIPTOR = new PropertyDescriptor(P_ID_AVERA…43 …private static final PropertyDescriptor DIM_STDDEV_DESCRIPTOR = new PropertyDescriptor(P_ID_STDDEV…44 …private static final PropertyDescriptor DIM_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_ERROR, …45 …private static final PropertyDescriptor DIM_HAD_VALUES_DESCRIPTOR = new PropertyDescriptor(P_ID_HA…
23 import org.eclipse.ui.views.properties.PropertyDescriptor;52 …private static final PropertyDescriptor BUILD_IS_BASELINE_DESCRIPTOR = new PropertyDescriptor(P_ID…53 …private static final PropertyDescriptor BUILD_BASELINE_DESCRIPTOR = new PropertyDescriptor(P_ID_BU…55 …private static final PropertyDescriptor BUILD_TEST_DELTA_DESCRIPTOR = new PropertyDescriptor(P_ID_…56 …private static final PropertyDescriptor BUILD_TEST_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_…57 …private static final PropertyDescriptor BUILD_STUDENTS_TTEST_DESCRIPTOR = new PropertyDescriptor(P…107 static PropertyDescriptor getWarningsDescriptor(int status) { in getWarningsDescriptor()
22 import org.eclipse.ui.views.properties.PropertyDescriptor;51 …private static final PropertyDescriptor CONFIG_CURRENT_BUILD_DESCRIPTOR = new PropertyDescriptor(P…52 …private static final PropertyDescriptor CONFIG_BASELINE_BUILD_DESCRIPTOR = new PropertyDescriptor(…53 …private static final PropertyDescriptor CONFIG_BASELINED_DESCRIPTOR = new PropertyDescriptor(P_ID_…54 …private static final PropertyDescriptor CONFIG_VALID_DESCRIPTOR = new PropertyDescriptor(P_ID_CONF…55 …private static final PropertyDescriptor CONFIG_DELTA_DESCRIPTOR = new PropertyDescriptor(P_ID_CONF…56 …private static final PropertyDescriptor CONFIG_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_CONF…104 static PropertyDescriptor getWarningsDescriptor(int status) { in getWarningsDescriptor()
28 import org.eclipse.ui.views.properties.PropertyDescriptor;43 …private static final PropertyDescriptor CURRENT_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_CUR…44 …private static final PropertyDescriptor BASELINE_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_BA…
35 import org.eclipse.ui.views.properties.PropertyDescriptor;135 static PropertyDescriptor getWarningsDescriptor(int status) { in getWarningsDescriptor()
19 class PropertyDescriptor {21 PropertyDescriptor() in PropertyDescriptor() function30 static bool IsAccessorDescriptor(PropertyDescriptor* desc) { in IsAccessorDescriptor()35 static bool IsDataDescriptor(PropertyDescriptor* desc) { in IsDataDescriptor()40 static bool IsGenericDescriptor(PropertyDescriptor* desc) { in IsGenericDescriptor()49 PropertyDescriptor* desc);53 PropertyDescriptor* desc);
41 PropertyDescriptor* desc) { in ToPropertyDescriptorFastPath()113 Handle<Object> PropertyDescriptor::ToObject(Isolate* isolate) { in ToObject()114 DCHECK(!(PropertyDescriptor::IsAccessorDescriptor(this) && in ToObject()115 PropertyDescriptor::IsDataDescriptor(this))); in ToObject()146 bool PropertyDescriptor::ToPropertyDescriptor(Isolate* isolate, in ToPropertyDescriptor()148 PropertyDescriptor* desc) { in ToPropertyDescriptor()258 void PropertyDescriptor::CompletePropertyDescriptor(Isolate* isolate, in CompletePropertyDescriptor()259 PropertyDescriptor* desc) { in CompletePropertyDescriptor()
873 PropertyDescriptor target_desc; in GetProperty()883 bool inconsistent = PropertyDescriptor::IsDataDescriptor(&target_desc) && in GetProperty()896 inconsistent = PropertyDescriptor::IsAccessorDescriptor(&target_desc) && in GetProperty()4225 PropertyDescriptor desc; in SetSuperProperty()4233 if (PropertyDescriptor::IsAccessorDescriptor(&desc) || in SetSuperProperty()4239 PropertyDescriptor value_desc; in SetSuperProperty()4884 PropertyDescriptor target_desc; in HasProperty()4955 PropertyDescriptor target_desc; in SetProperty()4960 bool inconsistent = PropertyDescriptor::IsDataDescriptor(&target_desc) && in SetProperty()4969 inconsistent = PropertyDescriptor::IsAccessorDescriptor(&target_desc) && in SetProperty()[all …]
236 PropertyDescriptor desc; in FilterProxyKeys()
8 import java.beans.PropertyDescriptor;42 PropertyDescriptor propDesc = getPropertyDescriptor(instanceClass, propertyName); in getPropertyType()46 private static PropertyDescriptor getPropertyDescriptor(Class targetClass, String propertyName) { in getPropertyDescriptor()47 PropertyDescriptor result = null; in getPropertyDescriptor()53 PropertyDescriptor[] propDescriptors = beanInfo.getPropertyDescriptors(); in getPropertyDescriptor()54 for (PropertyDescriptor propDesc : propDescriptors) { in getPropertyDescriptor()73 PropertyDescriptor propDesc = getPropertyDescriptor(instance.getClass(), name); in setPropertyRealValue()
18 import java.beans.PropertyDescriptor;108 PropertyDescriptor[] getters = ReflectUtils.getBeanGetters(source); in generateClass()109 PropertyDescriptor[] setters = ReflectUtils.getBeanGetters(target); in generateClass()131 PropertyDescriptor setter = setters[i]; in generateClass()132 PropertyDescriptor getter = (PropertyDescriptor)names.get(setter.getName()); in generateClass()160 private static boolean compatible(PropertyDescriptor getter, PropertyDescriptor setter) { in compatible()
80 private Map makePropertyMap(PropertyDescriptor[] props) { in makePropertyMap()83 names.put(((PropertyDescriptor)props[i]).getName(), props[i]); in makePropertyMap()109 PropertyDescriptor pd = (PropertyDescriptor)getters.get(key); in generateGet()131 PropertyDescriptor pd = (PropertyDescriptor)setters.get(key); in generatePut()182 PropertyDescriptor pd = (PropertyDescriptor)allProps.get(key); in generateGetPropertyType()
18 import java.beans.PropertyDescriptor;92 PropertyDescriptor[] descriptors = ReflectUtils.getBeanProperties(target); in generateClass()
18 import java.beans.PropertyDescriptor;140 public static void addProperties(BeanGenerator gen, PropertyDescriptor[] descriptors) { in addProperties()
13 import java.beans.PropertyDescriptor;29 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor) in getEditorForPropertyDescriptor()49 private static boolean isEnumerationProperty(PropertyDescriptor descriptor) { in isEnumerationProperty()
13 import java.beans.PropertyDescriptor;40 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor) in getEditorForPropertyDescriptor()
18 import java.beans.PropertyDescriptor;
18 import java.beans.PropertyDescriptor;33 private final PropertyDescriptor property;37 public MethodProperty(PropertyDescriptor property) { in MethodProperty()
20 import java.beans.PropertyDescriptor;63 for (PropertyDescriptor property : Introspector.getBeanInfo(type) in getPropertiesMap()
280 …public static Method[] getPropertyMethods(PropertyDescriptor[] properties, boolean read, boolean w… in getPropertyMethods()283 PropertyDescriptor pd = properties[i]; in getPropertyMethods()295 public static PropertyDescriptor[] getBeanProperties(Class type) { in getBeanProperties()299 public static PropertyDescriptor[] getBeanGetters(Class type) { in getBeanGetters()303 public static PropertyDescriptor[] getBeanSetters(Class type) { in getBeanSetters()307 … private static PropertyDescriptor[] getPropertiesHelper(Class type, boolean read, boolean write) { in getPropertiesHelper()310 PropertyDescriptor[] all = info.getPropertyDescriptors(); in getPropertiesHelper()316 PropertyDescriptor pd = all[i]; in getPropertiesHelper()322 … return (PropertyDescriptor[])properties.toArray(new PropertyDescriptor[properties.size()]); in getPropertiesHelper()
20 import java.beans.PropertyDescriptor;31 for (PropertyDescriptor property : Introspector.getBeanInfo(Bird.class) in isProperIntrospection()
20 import java.beans.PropertyDescriptor;29 for (PropertyDescriptor property : Introspector.getBeanInfo(TestBean1.class) in testToString()
171 var desc = new PropertyDescriptor();196 var desc = new PropertyDescriptor();270 var desc = new PropertyDescriptor();327 function PropertyDescriptor() { class344 utils.SetUpLockedPrototype(PropertyDescriptor, [433 var desc = new PropertyDescriptor();
12 -import java.beans.PropertyDescriptor;51 - for (PropertyDescriptor property : Introspector.getBeanInfo(type)
META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...