1 29 30 package com.caucho.amber.cfg; 31 32 33 36 abstract public class AbstractGeneratorConfig { 37 38 private String _name; 40 private int _initialValue; 41 private int _allocationSize; 42 43 public String getName() 44 { 45 return _name; 46 } 47 48 public void setName(String name) 49 { 50 _name = name; 51 } 52 53 public int getInitialValue() 54 { 55 return _initialValue; 56 } 57 58 public void setInitialValue(int initialValue) 59 { 60 _initialValue = initialValue; 61 } 62 63 public int getAllocationSize() 64 { 65 return _allocationSize; 66 } 67 68 public void setAllocationSize(int allocationSize) 69 { 70 _allocationSize = allocationSize; 71 } 72 } 73 | Popular Tags |