case class EvProcInstr(target: String, text: String) extends XMLEvent with Product with Serializable
A processing instruction was encountered.
- target
the "PITarget" of the processing instruction. For the instruction
<?foo bar="baz"?>
, the target would befoo
- text
the remainder of the instruction. For the instruction
<?foo bar="baz"?>
, the text would bebar="baz"
- Alphabetic
- By Inheritance
- EvProcInstr
- Serializable
- Serializable
- Product
- Equals
- XMLEvent
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
EvProcInstr(target: String, text: String)
- target
the "PITarget" of the processing instruction. For the instruction
<?foo bar="baz"?>
, the target would befoo
- text
the remainder of the instruction. For the instruction
<?foo bar="baz"?>
, the text would bebar="baz"