Version 0.9.7
This commit is contained in:
parent
ade7898516
commit
791db7f890
5 changed files with 23 additions and 23 deletions
|
@ -32,6 +32,16 @@ public class EntryInt extends EntryBase<EntryInt> {
|
|||
super(key);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the {@link java.text.DecimalFormat DecimalFormat} pattern.
|
||||
*
|
||||
* @param pattern the pattern
|
||||
*/
|
||||
public EntryInt pattern(String pattern) {
|
||||
super.pattern(pattern);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the new {@link java.util.Properties property} value to an integer.
|
||||
*
|
||||
|
@ -42,14 +52,4 @@ public class EntryInt extends EntryBase<EntryInt> {
|
|||
newValue(i);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the {@link java.text.DecimalFormat DecimalFormat} pattern.
|
||||
*
|
||||
* @param pattern the pattern
|
||||
*/
|
||||
public EntryInt pattern(String pattern) {
|
||||
super.pattern(pattern);
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue