Sha256: f0a43b81972a1d43830c5e41a06a8179fddfbd7c77cb94e8701c14763129c1bd
Contents?: true
Size: 517 Bytes
Versions: 94
Compression:
Stored size: 517 Bytes
Contents
module Fox # # Abstract base class for documents # # === Message identifiers # # +ID_TITLE+:: x # +ID_FILENAME+:: x # class FXDocument < FXObject # Modified state for the document [Boolean] attr_writer :modified # Document title attr_accessor :title # Document filename attr_accessor :filename # Return an initialized FXDocument instance def initialize # :yields: theDocument end # Return +true+ if document is modified def modified?; end end end
Version data entries
94 entries across 94 versions & 1 rubygems