1 27 28 package org.nightlabs.editor2d.model; 29 30 import java.util.ArrayList ; 31 import java.util.List ; 32 33 import org.nightlabs.editor2d.MultiLayerDrawComponent; 34 35 public class MultiLayerDrawComponentPropertySource 36 extends DrawComponentPropertySource 37 { 38 public MultiLayerDrawComponentPropertySource(MultiLayerDrawComponent mldc) { 39 super(mldc); 40 } 41 42 protected List createPropertyDescriptors() { 43 return EMPTY_LIST; 44 } 45 46 public static final List EMPTY_LIST = new ArrayList (0); 47 } 48 | Popular Tags |