5 # Represents an XML Instruction; IE, <? ... ?>
6 # TODO: Add parent arg (3rd arg) to constructor
7 class Instruction < Child
11 # target is the "name" of the Instruction; IE, the "tag" in <?tag ...?>
12 # content is everything else.
13 attr_accessor :target, :content
15 # Constructs a new Instruction
16 # @param target can be one of a number of things. If String, then
17 # the target of this instruction is set to this. If an Instruction,
18 # then the Instruction is shallowly cloned (target and content are
19 # copied). If a Source, then the source is scanned and parsed for
20 # an Instruction declaration.
21 # @param content Must be either a String, or a Parent. Can only
22 # be a Parent if the target argument is a Source. Otherwise, this
23 # String is set as the content of this instruction.
24 def initialize(target, content=nil)
25 if target.kind_of? String
29 elsif target.kind_of? Instruction
31 @target = target.target
32 @content = target.content
34 @content.strip! if @content
42 # See the rexml/formatters package
44 def write writer, indent=-1, transitive=false, ie_hack=false
45 Kernel.warn( "#{self.class.name}.write is deprecated" )
46 indent(writer, indent)
47 writer << START.sub(/\\/u, '')
51 writer << STOP.sub(/\\/u, '')
54 # @return true if other is an Instruction, and the content and target
55 # of the other matches the target and content of this object.
57 other.kind_of? Instruction and
58 other.target == @target and
59 other.content == @content
63 :processing_instruction
67 "<?p-i #{target} ...?>"