Sha256: f9a0fe1e50db54c4b1e4fd1adcca1d44c2889c21f154229be67fd02e6d986fa6

Contents?: true

Size: 752 Bytes

Versions: 1

Compression:

Stored size: 752 Bytes

Contents

module Bezebe
module CVS
    class LogInfo
        attr_accessor :headRevision, :totalRevisions, :description, :repositoryFilename, :file

        def initialize(logInformation = nil)
            if logInformation.kind_of? Rjb::Rjb_JavaProxy then
                if logInformation._classname == "org.netbeans.lib.cvsclient.command.log.LogInformation" then
                    @headRevision = logInformation.getHeadRevision
                    @totalRevisions = logInformation.getTotalRevisions
                    @description = logInformation.getDescription
                    @repositoryFilename = logInformation.getRepositoryFilename
                    @file = logInformation.getFile
                end
            end
        end
    end
end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bezebe-cvs-0.0.0 lib/bezebe-cvs/loginfo.rb