Ignore:
Timestamp:
2014-01-19T14:52:39+01:00 (12 years ago)
Author:
malcolmh
Message:

new model structure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/symbols/Symbols.java

    r30037 r30215  
    2020public class Symbols {
    2121
    22         public enum Prim {
     22        public enum Form {
    2323                BBOX, STRK, COLR, FILL, LINE, RECT, RRCT, ELPS, EARC, PLIN, PGON, RSHP, TEXT, SYMB, P1, P2, H2, H3, H4, H5, V2, D2, D3, D4, B2, S2, S3, S4, C2, X2
    2424        }
     
    3333
    3434        public static class Instr {
    35                 public Prim type;
     35                public Form type;
    3636                public Object params;
    3737
    38                 public Instr(Prim itype, Object iparams) {
     38                public Instr(Form itype, Object iparams) {
    3939                        type = itype;
    4040                        params = iparams;
Note: See TracChangeset for help on using the changeset viewer.