1 4 package com.tc.config.schema.dynamic; 5 6 9 public class FixedValueConfigItem implements ConfigItem { 10 11 private final Object value; 12 13 public FixedValueConfigItem(Object value) { 14 this.value = value; 15 } 16 17 public Object getObject() { 18 return this.value; 19 } 20 21 public void addListener(ConfigItemListener changeListener) { 22 } 24 25 public void removeListener(ConfigItemListener changeListener) { 26 } 28 29 } 30 | Popular Tags |