1 27 28 package org.nightlabs.editor2d.model; 29 30 import java.util.Collections ; 31 import java.util.List ; 32 33 import org.nightlabs.editor2d.Layer; 34 35 public class LayerPropertySource 36 extends DrawComponentPropertySource 37 { 38 public LayerPropertySource(Layer layer) { 39 super(layer); 40 } 41 42 protected List createPropertyDescriptors() { 43 return Collections.EMPTY_LIST; 44 } 45 } 46 | Popular Tags |