178179180181182183184185186187
@Override public Object getAdapter(Class adapter) { if (adapter == IPropertySource.class) { if (propertySource == null) propertySource = new GeometryPropertySource(this); return propertySource; } return null; }
230231232233234235236237238239