mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 12:48:12 +07:00
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;
|
|
}
|
|
|