Searched +refs:Tree +refs:see (Results 1 - 14 of 14) 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.
56 Returns an minimal instance of this object, basically just a reference back to the package (literally, see the source if you care).
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
[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.
56 Returns an minimal instance of this object, basically just a reference back to the package (literally, see the source if you care).
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
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple/lib/Tree/
H A DSimple.pm2 package Tree::Simple;
14 ## Tree::Simple
24 *Tree::Simple::weaken = \&Scalar::Util::weaken;
60 if (blessed($parent) && $parent->isa("Tree::Simple")) {
68 die "Insufficient Arguments : parent argument must be a Tree::Simple object";
79 (($parent eq $self->ROOT) || (blessed($parent) && $parent->isa("Tree::Simple"))))
80 || die "Insufficient Arguments : parent also must be a Tree::Simple object";
162 (blessed($tree) && $tree->isa("Tree::Simple"))
163 || die "Insufficient Arguments : Child must be a Tree::Simple object";
246 (blessed($child_to_remove) && $child_to_remove->isa("Tree
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple-1.18/lib/Tree/
H A DSimple.pm2 package Tree::Simple;
14 ## Tree::Simple
24 *Tree::Simple::weaken = \&Scalar::Util::weaken;
60 if (blessed($parent) && $parent->isa("Tree::Simple")) {
68 die "Insufficient Arguments : parent argument must be a Tree::Simple object";
79 (($parent eq $self->ROOT) || (blessed($parent) && $parent->isa("Tree::Simple"))))
80 || die "Insufficient Arguments : parent also must be a Tree::Simple object";
162 (blessed($tree) && $tree->isa("Tree::Simple"))
163 || die "Insufficient Arguments : Child must be a Tree::Simple object";
246 (blessed($child_to_remove) && $child_to_remove->isa("Tree
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple/lib/Tree/Simple/
H A DVisitor.pm2 package Tree::Simple::Visitor;
92 (blessed($tree) && $tree->isa("Tree::Simple"))
93 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
125 Tree::Simple::Visitor - Visitor object for Tree::Simple objects
129 use Tree::Simple;
130 use Tree::Simple::Visitor;
133 my $visitor = Tree::Simple::Visitor->new();
136 my $tree = Tree::Simple->new(Tree
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple-1.18/lib/Tree/Simple/
H A DVisitor.pm2 package Tree::Simple::Visitor;
92 (blessed($tree) && $tree->isa("Tree::Simple"))
93 || die "Insufficient Arguments : You must supply a valid Tree::Simple object";
125 Tree::Simple::Visitor - Visitor object for Tree::Simple objects
129 use Tree::Simple;
130 use Tree::Simple::Visitor;
133 my $visitor = Tree::Simple::Visitor->new();
136 my $tree = Tree::Simple->new(Tree
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple-VisitorFactory/lib/Tree/Simple/Visitor/
H A DSort.pm2 package Tree::Simple::Visitor::Sort;
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";
93 Tree::Simple::Visitor::Sort - A Visitor for sorting a Tree::Simple object heirarchy
97 use Tree::Simple::Visitor::Sort;
100 my $visitor = Tree::Simple::Visitor::Sort->new();
123 This implements a recursive multi-level sort of a Tree::Simple heirarchy. I think this deserves some more explaination, and the best way to do that is visually.
176 As you can see, n
[all...]
/macosx-10.9.5/CPANInternal-140/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DSort.pm2 package Tree::Simple::Visitor::Sort;
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";
93 Tree::Simple::Visitor::Sort - A Visitor for sorting a Tree::Simple object heirarchy
97 use Tree::Simple::Visitor::Sort;
100 my $visitor = Tree::Simple::Visitor::Sort->new();
123 This implements a recursive multi-level sort of a Tree::Simple heirarchy. I think this deserves some more explaination, and the best way to do that is visually.
176 As you can see, n
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dtree.rb12 class Tree < TkWindow class in class:Tk.BWidget
19 class Tk::BWidget::Tree
23 TkCommandNames = ['Tree'.freeze].freeze
24 WidgetClassName = 'Tree'.freeze
52 if tag.kind_of?(Tk::BWidget::Tree::Node)
193 Tk::BWidget::Tree::Node.id2obj(self, tk_send(findinfo, confine))
221 Tk::BWidget::Tree::Node.id2obj(self, tk_send('nodes', tagid(node), idx))
226 Tk::BWidget::Tree::Node.id2obj(self, node)
240 Tk::BWidget::Tree::Node.id2obj(self, tk_send('parent', tagid(node)))
248 def see(nod method in class:Tk
473 def see method in class:Tk
[all...]
/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();
84 Many base classes are not usable except as such -- but Tree::DAG_Node
87 use 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::bindImage
16 # - Tree
[all...]
/macosx-10.9.5/CPANInternal-140/Test-Warn/
H A DWarn.pm76 Tests to see that BLOCK gives exactly the specificated warnings.
151 Tests to see that BLOCK gives exactly the number of the specificated warnings
429 use base 'Tree::DAG_Node';
447 $last_daughter = Tree::DAG_Node->new({name => $_});
/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));
1667 $Global{sbtree} = $sbdnframe->Scrolled("Tree",
1735 my @keys = sort(keys(%Tree));
1739 $t1v = $Tree{$nvar};
2228 %Tree = (); # Delete the old stuff.
2246 $Tree{
[all...]
/macosx-10.9.5/CPANInternal-140/XML-Parser/
H A DParser.pm401 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
814 the expat distribution to see details on these restrictions.

Completed in 195 milliseconds