Lines Matching refs:property
39 private final XAtom property;
45 public WindowPropertyGetter(long window, XAtom property, long offset,
48 if (property.getAtom() == 0) {
49 throw new IllegalArgumentException("Property ATOM should be initialized first:" + property);
59 this.property = property;
70 public WindowPropertyGetter(long window, XAtom property, long offset,
73 this(window, property, offset, length, auto_delete, type.getAtom());
105 int status = XlibWrapper.XGetWindowProperty(XToolkit.getDisplay(), window, property.getAtom(),
109 if (isCachingSupported() && status == XConstants.Success && getData() != 0 && isCacheableProperty(property)) {
192 static boolean isCacheableProperty(XAtom property) {
193 return cacheableProperties.contains(property);
197 return XPropertyCache.isCached(window, property);
205 property.putAtom(actual_type);
206 XPropertyCache.PropertyCacheEntry entry = XPropertyCache.getCacheEntry(window, property);
222 property);