Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 17 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/swing/namevaluecomponents/AbstractNamedDocumentFieldComponent.java

Diff revisions: vs.
  @@ -13,6 +13,7 @@
13 13 super( pParams );
14 14 }
15 15
16 + @Override
16 17 protected JComponent createCenterContent()
17 18 {
18 19 JTextComponent field = createJTextComponent();
  @@ -23,6 +24,7 @@
23 24
24 25 abstract protected JTextComponent createJTextComponent();
25 26
27 + @Override
26 28 protected Object mutateChangeTo( Object pLastValue, Object pCurValue )
27 29 {
28 30 pCurValue = super.mutateChangeTo( pLastValue, pCurValue );
  @@ -34,6 +36,7 @@
34 36 return (JTextComponent) mInputComponent;
35 37 }
36 38
39 + @Override
37 40 public Object getComponentValue()
38 41 {
39 42 return getCompText();
  @@ -49,6 +52,7 @@
49 52 getJTextComponent().setText( pText );
50 53 }
51 54
55 + @Override
52 56 public void setComponentValue( Object pValue )
53 57 {
54 58 setCompText( toString( pValue ) );