10 lines
157 B
Plaintext
10 lines
157 B
Plaintext
package pkg;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
public interface TestInterfaceFields {
|
|
BigDecimal BIG_ZERO = BigDecimal.ZERO;
|
|
int MAX_BYTE_VALUE = 127;
|
|
}
|
|
|