Sponsored Content
Full Discussion: Information
Top Forums UNIX for Dummies Questions & Answers Information Post 82266 by Xman0ne on Tuesday 30th of August 2005 10:00:45 AM
Old 08-30-2005
Thanks

Thanks Karma for your the information. Smilie
 

8 More Discussions You Might Find Interesting

1. Programming

NEED Some Information!!!

Hi guys, do you know where I can find an information or example of creating a remote simulation banking application on UNIX. A client server socket programming using c language to build. using telnet to run. just a simple , add, withdraw, balance function. (1 Reply)
Discussion started by: btx
1 Replies

2. HP-UX

network information

Hello Guys! I am new from unix and I have a litle knowledge to some of the commands. my query is how can I view the network configuration of the station like the IP address, the NIS name , DNS etc. in windows we can get this info with the command ifconfig /all thanks, (1 Reply)
Discussion started by: eykyn17
1 Replies

3. UNIX for Dummies Questions & Answers

Need Information. Will Appreciate It

Hi guys i am new to linux, infact i have heared about it for a while now but never got it. I am prepared to give it a try but i need to know the system requirements. i have a 32bit, win xp, amd antlon 1.8ghz . will linux run fine on this system or do i need a new computer.. i have always... (2 Replies)
Discussion started by: rapzkilla
2 Replies

4. HP-UX

Need information on HP-UX....

Hi Guys, I'm new to HP-UX and i want installation procedure step by step.If i want take up the hp exam can any one give ful info about exam with new exam codes.I hav good knowlwdge on linux is it HP is similar to linux.If anybody having docs on HP-UX...pls reply me Regards, Vinay (2 Replies)
Discussion started by: vinay@wipro
2 Replies

5. Shell Programming and Scripting

Get information like substring

I retrieved values from postgresql database return the following line name ------------ myname (1 row) how can I extract "myname" out of the line? thanks (11 Replies)
Discussion started by: uativan
11 Replies

6. UNIX for Dummies Questions & Answers

Some help and information

Well, i am here coz i have this problem: a guy is pinging me so my internet go down when he wants and the same guy is nuking my ventrilo server that i rent in a good website. I want to know how to protect me against this attack and if is possible do the same to him, i know this guy is using a payed... (2 Replies)
Discussion started by: Psike
2 Replies

7. SuSE

fault information

Hi, I want to know where can I find the fault information of the system. I mean the event that the system may be occur, not the event happened on my system. Maybe there are some libraries or other website about logs collections. Thanks a lot. Best Wishes! (0 Replies)
Discussion started by: zhaoyy
0 Replies

8. What is on Your Mind?

Not enough information...

I appreciate the fact that rules are for everyone and I screwed up by not putting a screen printout in code brackets... However, I was a bit dismayed when I received the following and tried to reply to say "Thank you" for sending me the reminder. I could not reply and had no idea what the... (4 Replies)
Discussion started by: RogerBaran
4 Replies
Rose::Object::MixIn(3pm)				User Contributed Perl Documentation				  Rose::Object::MixIn(3pm)

NAME
Rose::Object::MixIn - A base class for mix-ins. SYNOPSIS
package MyMixInClass; use Rose::Object::MixIn(); # Use empty parentheses here our @ISA = qw(Rose::Object::MixIn); __PACKAGE__->export_tag(all => [ qw(my_cool_method my_other_method) ]); sub my_cool_method { ... } sub my_other_method { ... } ... package MyClass; # Import methods my_cool_method() and my_other_method() use MyMixInClass qw(:all); ... package MyOtherClass; # Import just my_cool_method() use MyMixInClass qw(my_cool_method); ... package YetAnotherClass; # Import just my_cool_method() as cool() use MyMixInClass { my_cool_method => 'cool' } DESCRIPTION
Rose::Object::MixIn is a base class for mix-ins. A mix-in is a class that exports methods into another class. This export process is controlled with an Exporter-like interface, but Rose::Object::MixIn does not inherit from Exporter. When you use a Rose::Object::MixIn-derived class, its import method is called at compile time. In other words, this: use Rose::Object::MixIn 'a', 'b', { c => 'd' }; is the same thing as this: BEGIN { Rose::Object::MixIn->import('a', 'b', { c => 'd' }) } To prevent the import method from being run, put empty parentheses "()" after the package name instead of a list of arguments. use Rose::Object::MixIn(); See the synopsis for an example of when this is handy: using Rose::Object::MixIn from within a subclass. Note that the empty parenthesis are important. The following is not equivalent: # This is not the same thing as the example above! use Rose::Object::MixIn; See the documentation for the import method below to learn what arguments it accepts. CLASS METHODS
import ARGS Import the methods specified by ARGS into the package from which this method was called. If the current class can already perform one of these methods, a fatal error will occur. To override an existing method, you must use the "-force" argument (see below). Valid formats for ARGS are as follows: o A method name Literal method names will be imported as-is. o A tag name Tags names are indicated with a leading colon. For example, ":all" specifies the "all" tag. A tag is a stand-in for a list of methods. See the export_tag method to learn how to create tags. o A reference to a hash Each key/value pair in this hash contains a method name and the name that it will be imported as. Use this feature to import methods under different names in order to avoid conflicts with existing methods. o "-force" The special literal argument "-force" will cause the specified methods to be imported even if the calling class can already perform one or more of those methods. o "-target_class CLASS" The special literal argument "-target-class" followed by a class name will cause the specified methods to be imported into CLASS rather than into the calling class. See the synopsis for several examples of the import method in action. (Remember, it's called implicitly when you use a Rose::Object::MixIn-derived class with anything other than an empty set of parenthesis "()" as an argument.) clear_export_tags Delete the entire list of export tags. export_tag NAME [, ARRAYREF] Get or set the list of method names associated with a tag. The tag name should not begin with a colon. If ARRAYREF is passed, then the list of methods associated with the specific tag is set. Returns a list (in list context) or a reference to an array (in scalar context) of method names. The array reference return value should be treated as read-only. If no such tag exists, and if an ARRAYREF is not passed, then a fatal error will occur. export_tags Returns a list (in list context) and a reference to an array (in scalar context) containing the complete list of export tags. The array reference return value should be treated as read-only. AUTHOR
John C. Siracusa (siracusa@gmail.com) LICENSE
Copyright (c) 2010 by John C. Siracusa. 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.1 2010-04-27 Rose::Object::MixIn(3pm)
All times are GMT -4. The time now is 09:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy