File: model/document/path.rb

Overview
Module Structure
Class Hierarchy
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: TmDoc#7
  module: Model
  module: Document#9
  class: Path#11
inherits from
  Absolute ( TmDoc::Model::Abstraction::Path )
has properties
constant: PATH_SEPARATOR_STRING #12
constant: LSM_ELEMENT_CLASS #13

Code

   1  # $Id: path.rb,v 1.2 2011/11/20 14:18:15 machan Exp $
   2 
   3  require 'tmdoc/tmstd'
   4  require 'tmdoc/model/abstraction'
   5 
   6 
   7  module TmDoc
   8 
   9  module Model::Document
  10 
  11  class Path < Model::Abstraction::Path::Absolute
  12      PATH_SEPARATOR_STRING   = '::'
  13      LSM_ELEMENT_CLASS       = String
  14  end
  15 
  16  end # TmDoc::Model::Document
  17 
  18  end # TmDoc