in scala/xml/dtd
class PublicID

case class PublicID(publicId: String, systemId: String)
extends ExternalID
with ScalaObject
with CaseClass
with TokenTests

a public identifier
Author:
Burak Emir
Parameters:
publicLiteral - the public identifier literal
systemLiteral - (can be null for notation pubIDs) the system identifier literal

Field Summary
  val publicId: String
  val systemId: String

Method Summary
final def attribute: MetaData
     always empty
final def child: Nil.type
     always empty
final def label: String
     the constant "#PI"
final override def toString(): String
     returns "PUBLIC "+publicId+" SYSTEM "+systemId
final def toString(sb: StringBuffer): StringBuffer
     appends "PUBLIC "+publicId+" SYSTEM "+systemId to argument

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/CaseClass-class
caseArity, caseElement, caseName

Methods inherited from scala/ScalaObject-class
getScalaType

Methods inherited from scala/xml/parsing/TokenTests-class
checkPubID, checkSysID, isName, isNameChar, isNameStart, isPubIDChar, isSpace, isSpace, isValidIANAEncoding

Field Detail

publicId

  val publicId: String

systemId

  val systemId: String
Method Detail

label

  final def label: String
the constant "#PI"

attribute

  final def attribute: MetaData
always empty

child

  final def child: Nil.type
always empty

toString

  final override def toString(): String
returns "PUBLIC "+publicId+" SYSTEM "+systemId

toString

  final def toString(sb: StringBuffer): StringBuffer
appends "PUBLIC "+publicId+" SYSTEM "+systemId to argument