Searched +refs:Tree +refs:create (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/CPANInternal-140/Tree-Simple-VisitorFactory/lib/Tree/Simple/
H A DVisitorFactory.pm2 package Tree::Simple::VisitorFactory;
17 $visitor = "Tree::Simple::Visitor::$visitor";
31 Tree::Simple::VisitorFactory - A factory object for dispensing Visitor objects
35 use Tree::Simple::VisitorFactory;
37 my $tf = Tree::Simple::VisitorFactory->new();
42 my $visitor = Tree::Simple::VisitorFactory->getVisitor("PathToRoot");
46 This object is really just a factory for dispensing Tree::Simple::Visitor::* objects. It is not required to use this package in order to use all the Visitors, it is just a somewhat convienient way to avoid having to type thier long class names.
72 This factory will load any module contained inside the B<Tree::Simple::Visitor::*> namespace. Given a name, it will attempt to C<require> the module B<Tree::Simple::Visitor::E<lt>I<Name>E<gt>.pm>. This allows others to create Visitor
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/
H A DVisitorFactory.pm2 package Tree::Simple::VisitorFactory;
17 $visitor = "Tree::Simple::Visitor::$visitor";
31 Tree::Simple::VisitorFactory - A factory object for dispensing Visitor objects
35 use Tree::Simple::VisitorFactory;
37 my $tf = Tree::Simple::VisitorFactory->new();
42 my $visitor = Tree::Simple::VisitorFactory->getVisitor("PathToRoot");
46 This object is really just a factory for dispensing Tree::Simple::Visitor::* objects. It is not required to use this package in order to use all the Visitors, it is just a somewhat convienient way to avoid having to type thier long class names.
72 This factory will load any module contained inside the B<Tree::Simple::Visitor::*> namespace. Given a name, it will attempt to C<require> the module B<Tree::Simple::Visitor::E<lt>I<Name>E<gt>.pm>. This allows others to create Visitor
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple-VisitorFactory/lib/Tree/Simple/Visitor/
H A DToNestedArray.pm2 package Tree::Simple::Visitor::ToNestedArray;
11 use base qw(Tree::Simple::Visitor);
24 (blessed($tree) && $tree->isa("Tree::Simple"))
25 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
58 Tree::Simple::Visitor::ToNestedArray - A Visitor for creating nested array trees from Tree::Simple objects.
62 use Tree::Simple::Visitor::ToNestedArray;
64 my $visitor = Tree::Simple::Visitor::ToNestedArray->new();
66 # given this Tree::Simple tree
67 my $tree = Tree
[all...]
H A DToNestedHash.pm2 package Tree::Simple::Visitor::ToNestedHash;
11 use base qw(Tree::Simple::Visitor);
24 (blessed($tree) && $tree->isa("Tree::Simple"))
25 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
60 Tree::Simple::Visitor::ToNestedHash - A Visitor for creating nested hash trees from Tree::Simple objects.
64 use Tree::Simple::Visitor::ToNestedHash;
66 my $visitor = Tree::Simple::Visitor::ToNestedHash->new();
68 # given this Tree::Simple tree
69 my $tree = Tree
[all...]
H A DCreateDirectoryTree.pm2 package Tree::Simple::Visitor::CreateDirectoryTree;
12 use base qw(Tree::Simple::Visitor);
27 open(FILE, ">", $filepath) || die "IO Error : Cannot create file ($filepath) : $!";
39 (blessed($tree) && $tree->isa("Tree::Simple"))
40 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
88 Tree::Simple::Visitor::CreateDirectoryTree - A Visitor for create a set of directories and files from a Tree::Simple object
92 use Tree::Simple::Visitor::CreateDirectoryTree;
94 # create
[all...]
H A DFromNestedHash.pm2 package Tree::Simple::Visitor::FromNestedHash;
11 use base qw(Tree::Simple::Visitor);
41 (blessed($tree) && $tree->isa("Tree::Simple"))
42 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
62 $new_tree = Tree::Simple->new($node);
76 Tree::Simple::Visitor::FromNestedHash - A Visitor for creating Tree::Simple objects from nested hash trees.
80 use Tree::Simple::Visitor::FromNestedHash;
82 my $visitor = Tree::Simple::Visitor::FromNestedHash->new();
101 # this then creates the equivalent Tree
[all...]
H A DLoadDirectoryTree.pm2 package Tree::Simple::Visitor::LoadDirectoryTree;
12 use base qw(Tree::Simple::Visitor);
61 (blessed($tree) && $tree->isa("Tree::Simple"))
62 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
115 Tree::Simple::Visitor::LoadDirectoryTree - A Visitor for loading the contents of a directory into a Tree::Simple object
119 use Tree::Simple::Visitor::LoadDirectoryTree;
121 # create a Tree::Simple object whose
123 my $tree = Tree
[all...]
H A DFromNestedArray.pm2 package Tree::Simple::Visitor::FromNestedArray;
11 use base qw(Tree::Simple::Visitor);
48 (blessed($tree) && $tree->isa("Tree::Simple"))
49 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
71 # create the new tree
78 $new_tree = Tree::Simple->new($node);
100 Tree::Simple::Visitor::FromNestedArray - A Visitor for creating Tree::Simple objects from nested array trees.
104 use Tree::Simple::Visitor::FromNestedArray;
106 my $visitor = Tree
[all...]
H A DLoadClassHierarchy.pm2 package Tree::Simple::Visitor::LoadClassHierarchy;
11 use base qw(Tree::Simple::Visitor);
43 (blessed($tree) && $tree->isa("Tree::Simple"))
44 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
58 my $new_tree = Tree::Simple->new(defined $filter ? $filter->($class_to_load) : $class_to_load);
78 my $new_tree = Tree::Simple->new(defined $filter ? $filter->($superclass) : $superclass);
95 $tree->addChild(Tree::Simple->new(defined $filter ? $filter->($method) : $method));
105 Tree::Simple::Visitor::LoadClassHierarchy - A Visitor for loading class hierarchies into a Tree::Simple hierarchy
109 use Tree
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DToNestedArray.pm2 package Tree::Simple::Visitor::ToNestedArray;
11 use base qw(Tree::Simple::Visitor);
24 (blessed($tree) && $tree->isa("Tree::Simple"))
25 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
58 Tree::Simple::Visitor::ToNestedArray - A Visitor for creating nested array trees from Tree::Simple objects.
62 use Tree::Simple::Visitor::ToNestedArray;
64 my $visitor = Tree::Simple::Visitor::ToNestedArray->new();
66 # given this Tree::Simple tree
67 my $tree = Tree
[all...]
H A DToNestedHash.pm2 package Tree::Simple::Visitor::ToNestedHash;
11 use base qw(Tree::Simple::Visitor);
24 (blessed($tree) && $tree->isa("Tree::Simple"))
25 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
60 Tree::Simple::Visitor::ToNestedHash - A Visitor for creating nested hash trees from Tree::Simple objects.
64 use Tree::Simple::Visitor::ToNestedHash;
66 my $visitor = Tree::Simple::Visitor::ToNestedHash->new();
68 # given this Tree::Simple tree
69 my $tree = Tree
[all...]
H A DCreateDirectoryTree.pm2 package Tree::Simple::Visitor::CreateDirectoryTree;
12 use base qw(Tree::Simple::Visitor);
27 open(FILE, ">", $filepath) || die "IO Error : Cannot create file ($filepath) : $!";
39 (blessed($tree) && $tree->isa("Tree::Simple"))
40 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
88 Tree::Simple::Visitor::CreateDirectoryTree - A Visitor for create a set of directories and files from a Tree::Simple object
92 use Tree::Simple::Visitor::CreateDirectoryTree;
94 # create
[all...]
H A DFromNestedHash.pm2 package Tree::Simple::Visitor::FromNestedHash;
11 use base qw(Tree::Simple::Visitor);
41 (blessed($tree) && $tree->isa("Tree::Simple"))
42 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
62 $new_tree = Tree::Simple->new($node);
76 Tree::Simple::Visitor::FromNestedHash - A Visitor for creating Tree::Simple objects from nested hash trees.
80 use Tree::Simple::Visitor::FromNestedHash;
82 my $visitor = Tree::Simple::Visitor::FromNestedHash->new();
101 # this then creates the equivalent Tree
[all...]
H A DLoadDirectoryTree.pm2 package Tree::Simple::Visitor::LoadDirectoryTree;
12 use base qw(Tree::Simple::Visitor);
61 (blessed($tree) && $tree->isa("Tree::Simple"))
62 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
115 Tree::Simple::Visitor::LoadDirectoryTree - A Visitor for loading the contents of a directory into a Tree::Simple object
119 use Tree::Simple::Visitor::LoadDirectoryTree;
121 # create a Tree::Simple object whose
123 my $tree = Tree
[all...]
H A DFromNestedArray.pm2 package Tree::Simple::Visitor::FromNestedArray;
11 use base qw(Tree::Simple::Visitor);
48 (blessed($tree) && $tree->isa("Tree::Simple"))
49 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
71 # create the new tree
78 $new_tree = Tree::Simple->new($node);
100 Tree::Simple::Visitor::FromNestedArray - A Visitor for creating Tree::Simple objects from nested array trees.
104 use Tree::Simple::Visitor::FromNestedArray;
106 my $visitor = Tree
[all...]
H A DLoadClassHierarchy.pm2 package Tree::Simple::Visitor::LoadClassHierarchy;
11 use base qw(Tree::Simple::Visitor);
43 (blessed($tree) && $tree->isa("Tree::Simple"))
44 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
58 my $new_tree = Tree::Simple->new(defined $filter ? $filter->($class_to_load) : $class_to_load);
78 my $new_tree = Tree::Simple->new(defined $filter ? $filter->($superclass) : $superclass);
95 $tree->addChild(Tree::Simple->new(defined $filter ? $filter->($method) : $method));
105 Tree::Simple::Visitor::LoadClassHierarchy - A Visitor for loading class hierarchies into a Tree::Simple hierarchy
109 use Tree
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/irb/
H A Dslex.rb39 create(token, preproc, postproc)
66 def create(token, preproc = nil, postproc = nil) method in class:IRB.SLex
96 @Tree = {}
107 if node = @Tree[ch]
133 if node = @Tree[ch]
156 @Tree[ch] = node
178 if node = @Tree[ch]
221 if node = @Tree[ch]
/macosx-10.9.5/CPANInternal-140/Tree-DAG_Node/lib/Tree/
H A DDAG_Node.pm2 package Tree::DAG_Node;
12 Tree::DAG_Node - (super)class for representing nodes in a tree
18 package Game::Tree::Node; # or whatever you're doing
19 use Tree::DAG_Node;
20 @ISA = qw(Tree::DAG_Node);
22 the methods in Tree::DAG_Node...
26 use Tree::DAG_Node;
27 my $root = Tree::DAG_Node->new();
37 is emergent from the linkages you create between nodes. This class
84 Many base classes are not usable except as such -- but Tree
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/examples/
H A Ddomtree.tcl38 Tree::use
40 Widget::bwinclude domtree Tree .tree
49 proc ::domtree { path args } { return [eval domtree::create $path $args] }
64 # domtree::create --
66 # Create a DOM Tree widget
73 # Tree widget created
75 proc domtree::create {path args} {
76 array set maps [list Tree {} :cmd {} .tree {}]
82 Widget::initFromODB domtree $path $maps(Tree)
86 set tree [eval ::Tree
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dtree.tcl7 # - Tree::create
8 # - Tree::configure
9 # - Tree::cget
10 # - Tree::insert
11 # - Tree::itemconfigure
12 # - Tree::itemcget
13 # - Tree::bindArea
14 # - Tree::bindText
15 # - Tree
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/style/
H A Das.tcl168 font create ASfont -size $size -family $family
169 font create ASfontBold -size $size -family $family -weight bold
170 font create ASfontFixed -size $fsize -family $ffamily
171 font create ASfontFixedBold -size $fsize -family $ffamily -weight bold
175 font create ASfont$i -size $isize -family $family
176 font create ASfontBold$i -size $isize -family $family -weight bold
177 font create ASfontFixed$i -size $ifsize -family $ffamily
178 font create ASfontFixedBold$i \
274 foreach class {HList Tree Tree
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/bwidget/
H A Dtree.rb13 def self.create(nb) singleton method in class:DemoTree
14 frame = nb.insert('end', 'demoTree', :text=>'Tree')
21 tree = Tk::BWidget::Tree.new(sw, :relief=>:flat, :borderwidth=>0,
161 Tk::BWidget::Tree::Node.new(tree, node,
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/contrib/
H A Dtklkup44 use Tk::Tree;
53 my %Tree = ();
652 $Tree{$ncbase} = $t1;
678 $Tree{$ncbase} = $t1;
703 @NcKeys = sort(keys(%Tree));
945 # Less than 4 attributes in user create initialization
1429 # create attribute action button
1495 # create attribute action button
1667 $Global{sbtree} = $sbdnframe->Scrolled("Tree",
1735 my @keys = sort(keys(%Tree));
[all...]
/macosx-10.9.5/CPANInternal-140/XML-Parser/
H A DParser.pm400 This option provides an easy way to create a given style of parser. The
401 built in styles are: L<"Debug">, L<"Subs">, L<"Tree">, L<"Objects">,
728 =head2 Tree
758 This is similar to the Tree style, except that a hash object is created for

Completed in 225 milliseconds