lib/clevic/swing/relational_delegate.rb in clevic-0.13.0.b9 vs lib/clevic/swing/relational_delegate.rb in clevic-0.13.0.b10
- old
+ new
@@ -10,16 +10,16 @@
# and the item text is fetched from them using attribute_path.
class RelationalDelegate < ComboDelegate
def initialize( field )
super
end
-
+
# use the Clevic::ComboBox class because JCombobox is remarkably stupid
# about far too many things.
def combo_class
ComboBox
end
-
+
# don't allow new values
def restricted?
true
end
end