Created
April 5, 2011 03:44
-
-
Save eed3si9n/902982 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case class SingularBuiltInTypeTest(singularbuiltintypetestsequence1: general.SingularBuiltInTypeTestSequence1, | |
singularbuiltintypetestsequence2: general.SingularBuiltInTypeTestSequence2, | |
singularbuiltintypetestsequence3: general.SingularBuiltInTypeTestSequence3) { | |
lazy val int = singularbuiltintypetestsequence1.int | |
lazy val byte = singularbuiltintypetestsequence1.byte | |
lazy val short = singularbuiltintypetestsequence1.short | |
lazy val long = singularbuiltintypetestsequence1.long | |
lazy val float = singularbuiltintypetestsequence1.float | |
lazy val double = singularbuiltintypetestsequence1.double | |
lazy val integer = singularbuiltintypetestsequence1.integer | |
lazy val nonPositiveInteger = singularbuiltintypetestsequence1.nonPositiveInteger | |
lazy val negativeInteger = singularbuiltintypetestsequence1.negativeInteger | |
lazy val nonNegativeInteger = singularbuiltintypetestsequence1.nonNegativeInteger | |
lazy val positiveInteger = singularbuiltintypetestsequence2.positiveInteger | |
lazy val unsignedLong = singularbuiltintypetestsequence2.unsignedLong | |
lazy val unsignedInt = singularbuiltintypetestsequence2.unsignedInt | |
lazy val unsignedShort = singularbuiltintypetestsequence2.unsignedShort | |
lazy val unsignedByte = singularbuiltintypetestsequence2.unsignedByte | |
lazy val decimal = singularbuiltintypetestsequence2.decimal | |
lazy val boolean = singularbuiltintypetestsequence2.boolean | |
lazy val string = singularbuiltintypetestsequence2.string | |
lazy val normalizedString = singularbuiltintypetestsequence2.normalizedString | |
lazy val token = singularbuiltintypetestsequence2.token | |
lazy val language = singularbuiltintypetestsequence3.language | |
lazy val Name = singularbuiltintypetestsequence3.Name | |
lazy val NCName = singularbuiltintypetestsequence3.NCName | |
lazy val NMTOKEN = singularbuiltintypetestsequence3.NMTOKEN | |
lazy val NMTOKENS = singularbuiltintypetestsequence3.NMTOKENS | |
lazy val ID = singularbuiltintypetestsequence3.ID | |
lazy val IDREF = singularbuiltintypetestsequence3.IDREF | |
lazy val IDREFS = singularbuiltintypetestsequence3.IDREFS | |
lazy val ENTITY = singularbuiltintypetestsequence3.ENTITY | |
lazy val ENTITIES = singularbuiltintypetestsequence3.ENTITIES | |
} | |
case class SingularBuiltInTypeTestSequence1(int: Int, | |
byte: Byte, | |
short: Short, | |
long: Long, | |
float: Float, | |
double: Double, | |
integer: BigInt, | |
nonPositiveInteger: BigInt, | |
negativeInteger: BigInt, | |
nonNegativeInteger: BigInt) | |
case class SingularBuiltInTypeTestSequence2(positiveInteger: BigInt, | |
unsignedLong: BigInt, | |
unsignedInt: Long, | |
unsignedShort: Int, | |
unsignedByte: Int, | |
decimal: BigDecimal, | |
boolean: Boolean, | |
string: String, | |
normalizedString: String, | |
token: String) | |
case class SingularBuiltInTypeTestSequence3(language: String, | |
Name: String, | |
NCName: String, | |
NMTOKEN: String, | |
NMTOKENS: Array[String], | |
ID: String, | |
IDREF: String, | |
IDREFS: Array[String], | |
ENTITY: String, | |
ENTITIES: Array[String]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment