class Pocolog::XMLRegistryDisplay

Attributes

logfiles[R]

Public Class Methods

new(io) click to toggle source
Calls superclass method Pocolog::ModeConfig.new
# File bin/pocolog, line 471
def initialize(io)
    super
    @logfiles   = Logfiles.new(*io)
end
optname() click to toggle source
# File bin/pocolog, line 469
def self.optname; "--types-xml" end

Public Instance Methods

execute() click to toggle source
# File bin/pocolog, line 476
def execute
    logfiles.streams.each do |stream|
        puts stream.marshalled_registry
    end
end