hello solaris friends,
I've tried installing Sun Solaris 10.0, but everytime it seems to bypass the network config. screen that looks similar to this...here's the url:
http://www.hup.hu/old/images/hup/Solaris/Sol10beta7/9.png
I'm able to install it all the way through but I get no... (2 Replies)
Hello,
Can anyone suggest me the source for getting the Linux OS,
I have done a partitions in my system and dedicated one partition for Linux with the windows.
Please suggest me the websites where I can get the s/w.
Thankx
S (1 Reply)
hello sir
I have done a fresh xp installation without formatting entire disk.
just deleting c: paratition and create parition with same size and continued installation later i saw that after clicking MY COMPUTER on desktop and i selected drive d: saw hidden BACKWARD TO MY COMPUTER... (1 Reply)
Hi All,
Good Morning. I am trying to install solaris 10 in my ultra 10 work station using CD. But i am getting the following error, can anyone helping me on this.
ok boot cdrom - install
Boot device : /pci@1f,0/pci@1,1/ide@3/cdrom@2,0:f File and args: - install
Can't read disk label.... (11 Replies)
Not very helpful to say the least. Seems to read the flar file and go through the upgrade and then come up with this error.
Any ideas? (1 Reply)
Discussion started by: psychocandy
1 Replies
LEARN ABOUT DEBIAN
class::accessor::children
Class::Accessor::Children(3pm) User Contributed Perl Documentation Class::Accessor::Children(3pm)NAME
Class::Accessor::Children - Automated child-class/accessor generation
SYNOPSIS
BEFORE (WITHOUT THIS)
package MyClass::Foo;
use base qw( Class:Accessor );
__PACKAGE__->mk_ro_accessors(qw( jacob michael joshua ethan ));
package MyClass::Bar;
use base qw( Class:Accessor );
__PACKAGE__->mk_ro_accessors(qw( emily emma madison isabella ));
package MyClass::Baz;
use base qw( Class:Accessor );
__PACKAGE__->mk_ro_accessors(qw( haruka haruto miyu yuto ));
AFTER (WITH THIS)
package MyClass;
use base qw( Class::Accessor::Children );
__PACKAGE__->mk_child_ro_accessors(
Foo => [qw( jacob michael joshua ethan )],
Bar => [qw( emily emma madison isabella )],
Baz => [qw( haruka haruto miyu yuto )],
);
DESCRIPTION
This module automagically generates child classes which have accessor/mutator methods.
This module inherits "Class::Accessor" to make accessors.
METHODS
This module provides the following methods in addition to all methods provided by "Class::Accessor".
mk_child_accessors
MyClass->mk_child_accessors( Foo => @fields, ... );
This generates a child class named "MyClass::Foo" which have accessor/mutator methods each named in "@fields".
mk_child_ro_accessors
MyClass->mk_child_ro_accessors( Bar => @fields, ... );
This generates a child class named "MyClass::Bar" which have read-only accessors (ie. true accessors).
mk_child_wo_accessors
MyClass->mk_child_wo_accessors( Baz => @fields, ... );
This generates a child class named "MyClass::Baz" which have write-only accessor (ie. mutators).
SEE ALSO
Class::Accessor
AUTHOR
Yusuke Kawasaki <http://www.kawa.net/>
COPYRIGHT AND LICENSE
Copyright (c) 2007 Yusuke Kawasaki. All rights reserved. This program is free software; you can redistribute it and/or modify it under the
same terms as Perl itself.
perl v5.10.0 2007-08-16 Class::Accessor::Children(3pm)