1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

Cfg: Consolidate data_type and gui_type; Add some basic error validation

This commit is contained in:
gnosygnu
2016-12-28 12:45:15 -05:00
parent fd12ed88a4
commit 15504c03a7
19 changed files with 170 additions and 243 deletions

View File

@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
package gplx;
import gplx.langs.gfs.*;
public class Bool_ {
public static final String Cls_val_name = "boolean";
public static final String Cls_val_name = "bool";
public static final Class<?> Cls_ref_type = Boolean.class;
public static final boolean N = false , Y = true;
public static final byte N_byte = 0 , Y_byte = 1 , __byte = 127;