Commit 90b84c2c authored by kremer's avatar kremer
Browse files

Corrected line comments

Added chrstring type: String5to253
parent fa4d0847
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -87,6 +87,7 @@ module Common_TextStrings {
    type charstring String1To127 length(1..127) with {encode "length(1..127)"};
    type charstring String1To127 length(1..127) with {encode "length(1..127)"};
    type charstring String1To128 length(1..128) with {encode "length(1..128)"};
    type charstring String1To128 length(1..128) with {encode "length(1..128)"};
    type charstring String1to255 length(1..255) with {encode "length(1..255)"};
    type charstring String1to255 length(1..255) with {encode "length(1..255)"};
	type charstring String5to253 length (5..253) with {encode "length(5..253)"};


  } // end stringSubTypes
  } // end stringSubTypes


@@ -98,7 +99,7 @@ module Common_TextStrings {
    with {encode "length(1..255)"};
    with {encode "length(1..255)"};


    type charstring AlphaNum ("0".."9","a".."z","A".."Z");
    type charstring AlphaNum ("0".."9","a".."z","A".."Z");
    type AlphaNum   AlphaNum2 length(2) with { encode "length(2)"};;
    type AlphaNum   AlphaNum2 length(2) with { encode "length(2)"};
    type AlphaNum   AlphaNum1To32 length(1..32) with {encode "length(1..32)"};
    type AlphaNum   AlphaNum1To32 length(1..32) with {encode "length(1..32)"};


  } // end group usefulTextStringTypes
  } // end group usefulTextStringTypes
+1 −1

File changed.

Contains only whitespace changes.