Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/objects/properties/PMD_DisplayHeightInitial.java

Diff revisions: vs.
  @@ -7,15 +7,12 @@
7 7
8 8 import java.util.*;
9 9
10 - public class PMD_DisplayHeightInitial extends PropertyIntPositiveMetaData
11 - {
10 + public class PMD_DisplayHeightInitial extends PropertyIntPositiveMetaData {
12 11 public static final String NAME = "DisplayHeightInitial";
13 12
14 - public static synchronized PropertyMetaData of( Integer pInitialValue )
15 - {
13 + public static synchronized PropertyMetaData of( Integer pInitialValue ) {
16 14 PropertyMetaData zPMD = INSTANCES.get( pInitialValue );
17 - if ( zPMD == null )
18 - {
15 + if ( zPMD == null ) {
19 16 INSTANCES.put( pInitialValue, zPMD = new PMD_DisplayHeightInitial( pInitialValue ) );
20 17 }
21 18 return zPMD;
  @@ -23,8 +20,7 @@
23 20
24 21 private static final Map<Integer, PropertyMetaData> INSTANCES = new HashMap<Integer, PropertyMetaData>();
25 22
26 - private PMD_DisplayHeightInitial( Integer pInitialValue )
27 - {
23 + private PMD_DisplayHeightInitial( Integer pInitialValue ) {
28 24 super( NAME, "Initial Display Height", Required.NO, pInitialValue );
29 25 }
30 26 }