Should deploying a .rar put those classes in the Weblogic Classpath?

Should deploying a .rar put those classes in the Weblogic Classpath?
          I am deploying an EJB and a RAR, the EJB has no dependencies on the
          RAR b/c the EJB is writing to the Common Client Interface(CCI). The EJB
          client app has
          sends/marshals as parameters classes that are defined in the RAR.
          For some reason the EJB's class loader hierachy cannot find the definition
          of this RAR specific class, even though the RAR is deploying. I receive the
          following error on the EJB client:
          ===========================================================
          java.rmi.UnmarshalException: error unmarshalling arguments; nested exception
          is:
          java.lang.ClassNotFoundException:
          com.myclientcompany.server.eai.InteractionSpecImpl
          java.lang.ClassNotFoundException:
          com.myclientcompany.server.eai.InteractionSpecImpl
          <<no stack trace available>>
          ===========================================================
          Marc T. Calello
          Momentum Software, Inc
          Austin, TX
          [email protected]
          

          When you pass an instance of
          com.myclientcompany.server.eai.InteractionSpecImpl
          as an argument to your EJB, the appServer needs to
          de-serialize(unmarshall)
          the object under the EJB context, and it needs the required class for
          unmarshalling,
          inside the ejb-jar(raTester.jar).
          So if you include the interactionspecimpl class in your ejb-jar file,
          then you dont need
          to include those classes in your server's classpath.
          prasen
          "Marc T. Calello" wrote:
          >
          > Should deploying a .rar put those classes in the Weblogic Classpath?
          > I am deploying an EJB and a RAR, the EJB has no dependencies on the
          > RAR b/c the EJB is writing to the Common Client Interface(CCI). The EJB
          > client app has
          > sends/marshals as parameters classes that are defined in the RAR.
          > For some reason the EJB's class loader hierachy cannot find the definition
          > of this RAR specific class, even though the RAR is deploying. I receive the
          > following error on the EJB client:
          > ===========================================================
          > java.rmi.UnmarshalException: error unmarshalling arguments; nested exception
          > is:
          > java.lang.ClassNotFoundException:
          > com.myclientcompany.server.eai.InteractionSpecImpl
          > java.lang.ClassNotFoundException:
          > com.myclientcompany.server.eai.InteractionSpecImpl
          > <<no stack trace available>>
          > ===========================================================
          >
          > --
          > Marc T. Calello
          > Momentum Software, Inc
          > Austin, TX
          > [email protected]
          

Similar Messages

  • Add jar files and use those classes at the runtime

    Hi All,
    I need to add some jar files at the runtime depends on which the user selects where the jar file is located and i need to import those classes in other class for some functionalities . I could add jar files by using the URLClassLoader and Class.forName("myjar.myclassname") is also succeeded and i have no clue how to use those classes with in the jar file as i couldn't import those classes also in the source because the jar files are being added at the runtime(This leads to class not found exception at the compile time).
    I had found a complicated way of using those classes after being added at the run time as below.
       Class clazz = Class.forName(myClass);
                final Method method = clazz.getDeclaredMethod(requiredMethod, new Class[]{URL.class});
                final Object returned = method.invoke(clazz.newInstance(), new Object[]{request}); but, its really pain to use in this way in all the places.
    Does any of you have simpler suggestions on how to achieve this?
    Thanks,
    Venky.

    Thanks jschell. Yes, you are right. I had found that using reflection API is the only way to load classes at the run time. But according to our application using reflection makes the application little complex, so while start of the application or during other modifications, i am overwriting my jar file to the latest one using FileChannel class as below
          FileChannel ic = new FileInputStream("new.jar").getChannel();
          FileChannel oc = new FileOutputStream("old.jar").getChannel();
          ic.transferTo(0, ic.size(), oc);
          ic.close();
          oc.close();After this code is executed, our application totally uses the new jar file.It is little fast than using reflection. Is this a good idea?

  • "But, I did not put those files in the Trash." How did the files get there? Why are they in there? OSX 10.9.5 (Mavericks)

    Why are so many files in my Trash? Is this some new feature I am some how unaware of? Confused... Thanks. Lena

    I don't know why it happened, but I just spent a few hours and went through them one at a time and either refiled or deleted...

  • We should be able to edit our comments for the weblogs

    Is there any way we can go back and edit our comments for the weblogs. I am not a very good typer ( i am always thinking ahead of my typing) and i would love to go back get rid of typos from my comments.

    Hi Prakash,
    We actually would love to have the forum functionality used at the end of the Weblogs. Per Weblog one forum thread.
    Unfortunately we don't have the bandwidth right now to do that
    Sorry, Mark.

  • Putting a class of objects in a Linked List?

    Hi,
    I copied a program from a book and I want to edit it and put studentRecord class in the Linked List. I've tried to play about with datum, but everything I try doesn't work. Can someone help me out? How could I put studentRecord in the LinkedList?
    import java.io.*;
    class IO
         static BufferedReader keyboard = new
              BufferedReader(new InputStreamReader(System.in));
         static PrintWriter screen = new PrintWriter(System.out, true);
    class studentRecord
         private String name;
         private int IDNumber;
    class LinkedList
         class Node
              protected Object datum;
              protected Node link;
              public Node() {}
              public Node(Object item, Node pointer)
                   datum = item;
                   link = pointer;
         private Node head;
         private Node tail;
         private Node temporary;
         private int nodeCount = 0;
         //constructor
         public LinkedList()
              head = null;
              tail = null;
              temporary = null;
         //method to insert an object into the linked list
         public void insert(Object datum)
              if (head == null) // list empty
                   head = new Node(datum, head);
                   tail = head;
              else
                   temporary = new Node(datum, temporary);
                   tail.link = temporary;
                   tail = temporary;
                   temporary = null;
              nodeCount++;
    Full program can be found: http://dil3mma.tripod.com/LinkedList.txt
    Thanks in advance.

    Hi jverd,
    Thanks for replying. I've tried to change the program liked you said but there is 1 error I can't seem to fix(Im sure there are more tho). The error is "cannot resolve symbol" I typed in caps the line it happens on so it's easy to see. Any idea what it could be? Is it cause I'm comparing a String with Object?
    import java.io.*;
    class IO
         static BufferedReader keyboard = new
              BufferedReader(new InputStreamReader(System.in));
         static PrintWriter screen = new PrintWriter(System.out, true);
    class sRecord
         private String name;
         private int IDNumber;
    class LinkedList
         class Node
              protected sRecord datum;
              protected Node link;
              public Node() {}
              public Node(sRecord item, Node pointer)
                   datum = item;
                   link = pointer;
         private Node head;
         private Node tail;
         private Node temporary;
         private int nodeCount = 0;
         //constructor
         public LinkedList()
              head = null;
              tail = null;
              temporary = null;
         //method to insert an object into the linked list
         public void insert(sRecord datum)
              if (head == null) // list empty
                   head = new Node(datum, head);
                   tail = head;
              else
                   temporary = new Node(datum, temporary);
                   tail.link = temporary;
                   tail = temporary;
                   temporary = null;
              nodeCount++;
         //method to delete an object from the linked list
         public boolean delete(Object scrap)
              Node previous = head;
              //for every node in the linked list
              for (Node current = head; current != null; current = current.link)
                   //node to be deleted is at the head of the list
                   if (current.datum.equals(scrap) && previous == current)
                        head = current.link;
                        if (head == null) tail = null;
                        nodeCount--;
                        return true;
                   //node to be deleted is after the first node and before the last
                   else if (current.datum.equals(scrap) && (current.link != null))
                        previous.link = current.link;
                        nodeCount--;
                        return true;
                   //node to be deleted is at the ned of list
                   else if (current.datum.equals(scrap) && (current.link == null))
                        tail = previous;
                        previous.link = null;
                        nodeCount--;
                        return true;
                   previous = current;
              return false;
         //method to display the contents of a linked list
         public void displayList()
              Node temporary = head;
              if (head == null)
                   IO.screen.println("linked list is empty");
                   return;
              while (temporary != null)
                   IO.screen.println(temporary.datum);
                   temporary = temporary.link;
         //method to return true if the linked list is empty
         public boolean isEmpty()
              return (nodeCount == 0);
         //method to return the number of nodes in the linked list
         public int nodes()
              return nodeCount;
         //method to display a menu to insert data into the linked list
         static private char menu()
              char response = '\u0000';
              IO.screen.println("Do you want to ");
              IO.screen.print("nsert, [D]elete, [L]ist, [E]xit? ");
              IO.screen.flush();
              boolean done=false;
              do
                   try
                        String data = IO.keyboard.readLine();
                        response = Character.toUpperCase(data.charAt(0));
                        done = true;
                   catch (Exception e)
                        IO.screen.println("Please input a single character I, D, L or E");
              } while (! done);
              return response;
         static public void main(String[] args) throws IOException
              LinkedList list = new LinkedList();
              String datum;
              char choice;
              //get information from menu
              choice = menu();
              for (;;)
                   //Menu
                   switch (choice)
                        case 'I' :
                             IO.screen.println("type quit to finish input");
                             IO.screen.print("Enter a word ");
                             IO.screen.flush();
                             datum = IO.keyboard.readLine();
                             while (! datum.equals("quit"))
    THE ERROR HAPPENS HERE ON THIS LINE          list.insert(datum.name);
                                  IO.screen.print("Enter another word");
                                  IO.screen.flush();
                                  datum = IO.keyboard.readLine();
                             break;
                   case 'D' :
                        //if list is empty deletion not possible
                        if (list.isEmpty())
                             IO.screen.println("linked list is empty");
                             break;
                        IO.screen.println("type quit to finish input");
                        IO.screen.print("Delete? ");
                        IO.screen.flush();
                        datum = IO.keyboard.readLine();
                        while (! datum.equals("quit"))
                             if (list.delete(datum))
                                  IO.screen.println(datum+" was scrapped!");
                             //if list is empty deletion is not possible
                             if (list.isEmpty())
                                  IO.screen.println("linked list is empty");
                                  break;
                             IO.screen.print("Delete? ");
                             IO.screen.flush();
                             datum = IO.keyboard.readLine();
                        break;
                   case 'L' :
                        list.displayList();
                        IO.screen.println("number of nodes " + list.nodes());
                        break;
                   case 'E' : System.exit(0);
              //get information from menu
              choice = menu();

  • How I can compile a ejb3 class to a idl file by the weblogic.rmic command.

    Now, I want create a idl file from a ejb3 class by the weblogic.rmic command.
    I had written a sample case. but when I compile, I get a [Class not found] error, why?
    Who can guide me or provide me with a sample?
    There is a my sample code, below.
    [Java Class/Source Path Diagram]
    Ejb3ToIdlApp\
    |---ejbModule
    | |---hello
    | | |---Hello.java (*Class implents)
    | | IHello.java (*Interface)
    | |---META-INF
    | |--- MANIFEST.MF
    | weblogic-ejb-jar.xml
    |---build
    |---classes
    |---hello
    | |---Hello.class
    | IHello.class
    |---META-INF
    |--- MANIFEST.MF
    weblogic-ejb-jar.xml
    [Interface]
    // IHello.java
    package hello;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface IHello extends Remote {
    String sayHello() throws RemoteException;
    [Java Class]
    // Hello.java
    package hello;
    import java.rmi.RemoteException;
    public class Hello implements IHello {
    private String name;
    public Hello(String s) throws RemoteException {
    this.name = s;
    @Override
    public String sayHello() throws RemoteException {
    return "Hello ! From " + name;
    * @param args
    public static void main(String[] args) {
    int i = 0;
    try {
    for(i = 0; i < 10; i++) {
    Hello obj = new Hello("MutiHelloServer" + i);
    //Context.rebind("//sample/MutiHelloServer" + i, obj);
    } catch(Exception e) {
    System.out.println("Hello Error: " + e.getMessage());
    e.printStackTrace();
    [MANIFEST.MF]
    Manifest-Version: 1.0
    Class-Path:
    [weblogic-ejb-jar.xml]
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-ejb-jar xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-ejb-jar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd http://xmlns.oracle.com/weblogic/weblogic-ejb-jar http://xmlns.oracle.com/weblogic/weblogic-ejb-jar/1.3/weblogic-ejb-jar.xsd">
    <!--weblogic-version:12.1.1-->
    </wls:weblogic-ejb-jar>
    [EJB Jar]
    ejbModule.jar (* Exported from a sample, above)
    [Command Environment]
    SET WEBLOGIC_SERVER=C:\Oracle\Middleware\wlserver_12.1\server
    SET JAVA_HOME=C:\Program Files\Java\jdk1.7.0_09
    SET CLASSPATH=.;%JAVA_HOME%\jre\lib;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar;%WEBLOGIC_SERVER%\lib;%WEBLOGIC_SERVER%\lib\weblogic.jar;
    java weblogic.rmic -idl ejbModule.hello.Hello
    [execution result]
    Class not found : ejbModule.hello.Hello
    ejbModule.hello.Hello
    Help!

    Thanks for your replay.
    Before I set the classpath, I had met the ClassNotFound problem.
    My command : java -cp %WEBLOGIC_SERVER%\lib\weblogic.jar weblogic.rmic -idl ejbModule.hello.Hello
    I was afraid to lost the class that the weblogic.rmic is required, I set the classpath(java library path/class ,weblogic library path/class).
    I think the class what is not found is like my class(hello), not the class of the weblogic or java.
    Now I don't know what is requred by weblogic.rmic. Is it a class or source of "Hello", and the package name of "Hello" is requred?
    After the idl option is cut, when I execute the Command[java weblogic.rmic *---idl--* ejbModule.hello.Hello], I got the other error, below.
    (*the Hello class is in ejbModule.jar)
    C:\CORBA\test>java weblogic.rmic ejbModule.hello.Hello
    java.lang.ClassNotFoundException: ejbModule.hello.Hello
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at weblogic.rmi.rmic.Remote2Java.loadClassUsingSystemClasspath(Remote2Ja
    va.java:765)
    at weblogic.rmi.rmic.Remote2Java.loadClass(Remote2Java.java:757)
    at weblogic.rmi.rmic.Remote2Java.checkIsNotInterface(Remote2Java.java:73
    6)
    at weblogic.rmi.rmic.Remote2Java.outputs(Remote2Java.java:518)
    at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:262
    at weblogic.rmic.runBody(rmic.java:64)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.rmic.main(rmic.java:142)
    ejbModule.hello.Hello must be a remote interface implementation and should exist in the classpath
    -----------------------

  • Class loaded from  system classpath

    When I kick off my WebLogic Server 8.1 SP2 startWebLogic.sh I get the following:
    <Warning> <EJB-010001> <While deploying EJB 'blah, blah, blah', class yadda.yadda.yadda was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    How do I do this? I need to be able to make changes to code, compile it and "drop" it into my application directory without having to stop and restart my server.
    I would appreciate any assistance.
    Thank you.
    Steve

    Hi Steve,
    When you start weblogic server it has the EJB home, remote or bean class in its classpath. So when you deploy the bean it loads the classes from the system classpath.
    To avoid this error, make sure that your server classpath does not contain any of the bean classes.
    vasanthi ramesh

  • For WebLogic 5.1, where should I put my class files for my JavaBeans?

    With JBuilder4, I have built an application with JSP and a few Java Beans (Those JavaBeans are instantiated in those JSP files). There are no EJBs. The package name is called 'onlinetrade'. I have tested the application on JBuilder's web server, it works pretty well.
    Now I am moving this application to WegLogic 5.1. I have encountered a problem with WebLogic 5.1
    and do not know where I should place my JavaBean class files --
    Originally, the JSP files for my application are in package path-- ..onlinetrade\jsp
    and the class files for my beans are in the package path -- ..onlinetrade\jsp\bean\*.class
    Now, with WebLogic 5.1,
    1) I have put my JSP files in
    C:\weblogic\myserver\public_html\onlinetrade\jsp
    2) I have created subdirectory and put my bean class files in
    C:\weblogic\myserver\classfiles\onlinetrade\jsp\bean
    When I started weblogic and the first page - login.jsp page can be up and accessed. But when I login and forward to another JSP page called 'controller.jsp', where a bean is instantiated, I got the following error
    Compilation of 'C:\weblogic\myserver\classfiles\jsp_servlet\_onlinetrade\_jsp\__controller.java' failed:
    C:\weblogic\myserver\classfiles\jsp_servlet\_onlinetrade\_jsp\__controller.java:210: cannot access jsp_servlet._onlinetrade._jsp.registerBean
    probably occurred due to an error in /onlinetrade/jsp/controller.jsp line 53:
    registerBean registerBeanInstance = new registerBean();
    I know the javac is working, and a java file is created upon the JSP page, but the problem is -- the bean class files cannot be found!!!
    Where should I create the package path and put my bean class file so that my JSP pages can pick them up?
    Any help is greatly appreciated!
    Thanks.
    --Tim

    I have mine in WEB-INF/classes

  • Finding resource files deployed inside RAR?

    Hi all,
    NB: First-time poster, please forgive any transgressions.
    I am deploying a RAR (not within an EAR) to WL 8.1 SP3, which has the following form:
    META-INF/
        ra.xml
        weblogic-ra.xml
    myconnector.jarClasses in myconnector.jar need to find a resource file, myresource.xml, on the classpath. I've tried placing myresource.xml in the root of the rar file, and in a jar file in the root of the rar (called it myresources.jar). In both cases, the resource is not found; the only way that it's ever found is by placing it in a directory that is on the server's classpath in startWebLogic.cmd.
    How can I package the resource file in my rar such that Class.getResourceAsStream and/or ClassLoader.getResourceAsStream can find it?
    TIA,
    Matthew

    A deployed application has no relation at all to a 'project'. What you want is the application to find a file in a specific directory.
    In your case you will probably only want to read from the file, so your best bet is to put the file on the classpath (for example, put it in the 'classes' subdirectory of your war) and load it using getClass().getClassLoader().getResourceAsStream(). In other words, make the properties file part of your project resources.

  • Problems deploying kodo.rar (2.4.0) to WebLogic Server 7.0 SP1

    I get the following errors in my WLS logs by dropping the kodo.rar into the
    application deploy directory.
    ####<Oct 19, 2002 2:35:15 PM EDT> <Notice> <Application Poller> <BENX22>
    <myserver> <Thread-7> <kernel identity> <> <149404> <Activate application
    appsdirkodo_rar on myserver - Running>
    ####<Oct 19, 2002 2:35:16 PM EDT> <Error> <Connector> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <190023> <<
    KodoJDO_kodo > Error invoking the ManagedConnectionFactory's "set" method
    for the configuration property "MaxPool". Reason:
    java.lang.NumberFormatException: .>
    ####<Oct 19, 2002 2:35:16 PM EDT> <Error> <Deployer> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <149201>
    <The Slave Deployer failed to complete the deployment task with id 1 for the
    application appsdirkodo_rar.>
    weblogic.management.ApplicationException: activate failed forkodo
    Module Name: kodo, Error: weblogic.management.DeploymentException:
    ResourceException when adding ManagedConnectionFactory for kodo
    at
    weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.jav
    a:1035)
    ####<Oct 19, 2002 2:35:16 PM EDT> <Info> <Deployer> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <149039>
    <Completing a deployment task with id 3 for application appsdirkodo_rar
    with status Failed>
    ####<Oct 19, 2002 2:35:17 PM EDT> <Notice> <Application Poller> <BENX22>
    <myserver> <Thread-7> <kernel identity> <> <149404> <Activate application
    appsdirkodo_rar on myserver - Failed>

    After getting my application deployed (see below), I am finding that the
    proper SQL is executing as expected through Kodo. The logs show the SQL
    statements as a consequence of the EJB method being called. The EJB extends
    com.solarmetric.kodo.ee.JDOSessionBean. The problem is that the container
    managed transaction (Required) is always rolling back at the end, despite
    everything succeeding. I suspect that I still have something configured
    incorrectly in the Kodo ra.xml. I played with
    "TransactionManagerName=javax/transaction/TransactionManager" as the value
    of ManagedRuntimeProperties without effect. I have attached the ra.xml. Is
    there something obviously wrong here? Am I missing something?
    Ben
    "Ben Eng" <[email protected]> wrote in message
    news:[email protected]...
    Never mind. I am an idiot. The ra.xml descriptor within the kodo.rar file
    must be edited, before deploying to WLS. This seems to deploy nicely.
    Now, I'm trying to use Kodo from a SessionBean, so I am packaging kodo.rar
    into the same EAR as my EJB-JAR. It is giving me the following error atruntime, even
    though the class is clearly present in kodo-jdo-runtime.jar within theRAR.
    >
    java.lang.NoClassDefFoundError:com/solarmetric/kodo/impl/jdbc/runtime/Connector
    >
    I found the following page in the WLS documentation.
    http://edocs.bea.com/wli/docs70/devadapt/2concpts.htm#1028215
    It appears as though I may need to move the Kodo JARs from the RAR intothe
    root directory of the EAR and reference them from the MANIFEST Class-Pathof both
    the RAR and the EJB-JAR. After putting up with all this ClassLoadercomplexity in
    J2EE, I sure hope the application packaged with Kodo becomes hot
    redeployable. :)
    Benbegin 666 ra.xml
    M/#]X;6P@=F5R<VEO;CTB,2XP(B!E;F-O9&EN9STB551&+3@B/SX*/"%$3T-4
    M65!%(&-O;FYE8W1O<B!054),24,@"B @(" G+2\O4W5N($UI8W)O<WES=&5M
    M<RP@26YC+B\O1%1$($-O;FYE8W1O<B Q+C O+T5.)R *(" @("=H='1P.B\O
    M:F%V82YS=6XN8V]M+V1T9"]C;VYN96-T;W)?,5\P+F1T9"<^"CPA+2T@"B @
    M("!297-O=7)C92!A9&%P=&]R(&1E<V-R:7!T;W(@9F]R('5S:6YG($MO9&\*
    M(" @($I$3R!I;B!A(&UA;F%G960@96YV:7)O;FUE;G0N"BTM/@H\8V]N;F5C
    M=&]R/@H@(" @/&1I<W!L87DM;F%M93Y+;V1O2D1//"]D:7-P;&%Y+6YA;64^
    M"B @(" \=F5N9&]R+6YA;64^4V]L87)M971R:6,L($EN8RX\+W9E;F1O<BUN
    M86UE/@H@(" @/'-P96,M=F5R<VEO;CXQ+C \+W-P96,M=F5R<VEO;CX*(" @
    M(#QE:7,M='EP93YJ9&\\+V5I<RUT>7!E/@H@(" @/'9E<G-I;VX^,2XP/"]V
    M97)S:6]N/@H@(" @/&QI8V5N<V4^"B @(" @(" @/&1E<V-R:7!T:6]N/@H@
    M(" @(" @(%-E92!H='1P.B\O=W=W+G-O;&%R;65T<FEC+F-O;2!F;W(@=&5R
    M;7,@86YD(&QI8V5N<V4@8V]N9&ET:6]N<RX*(" @(" @(" \+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QL:6-E;G-E+7)E<75I<F5D/G1R=64\+VQI8V5N<V4M
    M<F5Q=6ER960^"B @(" \+VQI8V5N<V4^"B @(" \<F5S;W5R8V5A9&%P=&5R
    M/@H@(" @(" @"3QM86YA9V5D8V]N;F5C=&EO;F9A8W1O<GDM8VQA<W,^8V]M
    M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+F5E+DUA;F%G961#;VYN96-T
    M:6]N1F%C=&]R>4EM<&P\+VUA;F%G961C;VYN96-T:6]N9F%C=&]R>2UC;&%S
    M<SX*(" @(" @(" \8V]N;F5C=&EO;F9A8W1O<GDM:6YT97)F86-E/FIA=F%X
    M+FID;RY097)S:7-T96YC94UA;F%G97)&86-T;W)Y/"]C;VYN96-T:6]N9F%C
    M=&]R>2UI;G1E<F9A8V4^"B @(" @(" @/&-O;FYE8W1I;VYF86-T;W)Y+6EM
    M<&PM8VQA<W,^8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+F5E+DI$
    M3T-O;FYE8W1I;VY&86-T;W)Y/"]C;VYN96-T:6]N9F%C=&]R>2UI;7!L+6-L
    M87-S/@H*"B @(" @(" @/&-O;FYE8W1I;VXM:6YT97)F86-E/FIA=F%X+FID
    M;RY097)S:7-T96YC94UA;F%G97(\+V-O;FYE8W1I;VXM:6YT97)F86-E/@H@
    M(" @(" @(#QC;VYN96-T:6]N+6EM<&PM8VQA<W,^8V]M+G-O;&%R;65T<FEC
    M+FMO9&\N964N145097)S:7-T96YC94UA;F%G97(\+V-O;FYE8W1I;VXM:6UP
    M;"UC;&%S<SX*"@H@(" @(" @(#QT<F%N<V%C=&EO;BUS=7!P;W)T/DQO8V%L
    M5')A;G-A8W1I;VX\+W1R86YS86-T:6]N+7-U<'!O<G0^"@H@(" @/&-O;F9I
    M9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^3&EC96YS94ME>3PO
    M9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/DQI
    M8V5N<V5+97D\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF
    M:6<M<')O<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/BHJ
    M*BHM*BHJ*BTJ*BHJ+2HJ*BHM*BHJ*CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \(2TM8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY097)S:7-T96YC94UA;F%G97)#
    M;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN
    M86UE/E!E<G-I<W1E;F-E36%N86=E<D-L87-S/"]C;VYF:6<M<')O<&5R='DM
    M;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG
    M+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @
    M(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y
    M/@H@(" @(" @(#QD97-C<FEP=&EO;CY097)S:7-T96YC94UA;F%G97)0<F]P
    M97)T:65S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+6YA;64^4&5R<VES=&5N8V5-86YA9V5R4')O<&5R=&EE<SPO8V]N9FEG+7!R
    M;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA
    M=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @
    M(#QC;VYF:6<M<')O<&5R='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L
    M=64^"B @(" \+V-O;F9I9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP
    M<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^1&%T84-A8VAE0VQA<W,\
    M+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y$
    M871A0V%C:&5#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I
    M9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L
    M=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P
    M97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S
    M8W)I<'1I;VX^1&%T84-A8VAE4')O<&5R=&EE<SPO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1A=&%#86-H95!R;W!E<G1I
    M97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM
    M='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @
    M(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!R
    M;WAY36%N86=E<D-L87-S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+6YA;64^4')O>'E-86YA9V5R0VQA<W,\+V-O;F9I9RUP<F]P
    M97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A
    M+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @(#PA+2UC;VYF:6<M<')O
    M<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!R;WAY36%N86=E<E!R;W!E
    M<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M;F%M93Y0<F]X>4UA;F%G97)0<F]P97)T:65S/"]C;VYF:6<M<')O<&5R='DM
    M;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG
    M+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @
    M(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y/@H@
    M(" @(" @(#QD97-C<FEP=&EO;CY/<'1I;6ES=&EC/"]D97-C<FEP=&EO;CX*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^3W!T:6UI<W1I8SPO8V]N
    M9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT
    M>7!E/F)O;VQE86X\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC
    M;VYF:6<M<')O<&5R='DM=F%L=64^=')U93PO8V]N9FEG+7!R;W!E<G1Y+79A
    M;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY2971A:6Y686QU97,\+V1E<V-R
    M:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y2971A:6Y6
    M86QU97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R=64\+V-O;F9I9RUP
    M<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O
    M;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^4F5S=&]R959A
    M;'5E<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN
    M86UE/E)E<W1O<F5686QU97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @
    M(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R
    M=64\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^26=N;W)E0V%C:&4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y)9VYO<F5#86-H93PO8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/F)O;VQE86X\+V-O
    M;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M=F%L=64^9F%L<V4\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \
    M9&5S8W)I<'1I;VX^3F]N=')A;G-A8W1I;VYA;%)E860\+V1E<V-R:7!T:6]N
    M/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y.;VYT<F%N<V%C=&EO
    M;F%L4F5A9#PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/F)O;VQE86X\+V-O;F9I9RUP<F]P97)T>2UT>7!E
    M/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^=')U93PO8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \
    M8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY.;VYT<F%N
    M<V%C=&EO;F%L5W)I=&4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y.;VYT<F%N<V%C=&EO;F%L5W)I=&4\+V-O;F9I9RUP
    M<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB
    M;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/F9A;'-E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^
    M"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/DUU;'1I=&AR96%D960\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y-=6QT:71H<F5A
    M9&5D/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R
    M;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93YT<G5E/"]C;VYF:6<M<')O
    M<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY5
    M<V5R3F%M93PO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UN86UE/D-O;FYE8W1I;VY5<V5R3F%M93PO8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3
    M=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM=F%L=64^8F5N/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @
    M(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY087-S=V]R9#PO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY087-S=V]R9#PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP
    M<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^
    M<&%S<W=O<F0\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG
    M+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S
    M8W)I<'1I;VX^0V]N;F5C=&EO;E523#PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I;VY54DP\+V-O;F9I9RUP
    M<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ
    M879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @
    M(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/FID8F,Z;7ES<6PZ+R]B96YX,C(O
    M9&5M;S]U<V5R/6)E;B9A;7 [<&%S<W=O<F0]<&%S<W=O<F0\+V-O;F9I9RUP
    M<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O
    M;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^0V]N;F5C=&EO
    M;D1R:79E<DYA;64\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM;F%M93Y#;VYN96-T:6]N1')I=F5R3F%M93PO8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N
    M;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC
    M;VYF:6<M<')O<&5R='DM=F%L=64^8V]M+FUY<W%L+FID8F,N1')I=F5R/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*
    M(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!E
    M<G-I<W1E;F-E36%N86=E<D9A8W1O<GE#;&%S<SPO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/E!E<G-I<W1E;F-E36%N86=E
    M<D9A8W1O<GE#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I
    M9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L
    M=64^8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+DI$0D-097)S:7-T
    M96YC94UA;F%G97)&86-T;W)Y/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY&86-T;W)Y3F%M93PO
    M9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O
    M;FYE8W1I;VY&86-T;W)Y3F%M93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\
    M+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @
    M(" \9&5S8W)I<'1I;VX^0V]N;F5C=&EO;D9A8W1O<GDR3F%M93PO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY&86-T;W)Y,DYA;64\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @
    M(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF
    M:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A
    M;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O
    M<&5R='DM+3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R
    M:7!T:6]N/DUA>%!O;VP\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y-87A0;V]L/"]C;VYF:6<M<')O<&5R='DM;F%M93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C@P
    M/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T
    M>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N
    M/DUI;E!O;VP\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM;F%M93Y-:6Y0;V]L/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @
    M(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM
    M='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C \+V-O;F9I
    M9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @
    M/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^37-786ET
    M/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^
    M37-786ET/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C4P,# \+V-O;F9I9RUP<F]P
    M97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I
    M9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^1&5F875L=$9E=&-H
    M5&AR97-H;VQD/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^1&5F875L=$9E=&-H5&AR97-H;VQD/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C
    M;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/C,P/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E
    M<V-R:7!T:6]N/D1E9F%U;'1&971C:$)A=&-H4VEZ93PO9&5S8W)I<'1I;VX^
    M"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1E9F%U;'1&971C:$)A
    M=&-H4VEZ93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93XQ,#PO8V]N9FEG+7!R;W!E
    M<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \(2TM8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY1=65R>49I;'1E
    M<DQI<W1E;F5R<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UN86UE/E%U97)Y1FEL=&5R3&ES=&5N97)S/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL
    M86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*
    M(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y
    M/@H@(" @(" @(#QD97-C<FEP=&EO;CY%;F%B;&51=65R>45X=&5N<VEO;G,\
    M+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y%
    M;F%B;&51=65R>45X=&5N<VEO;G,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@
    M(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M
    M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/F9A;'-E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP
    M<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E
    M<V-R:7!T:6]N/D-A8VAE4F5F97)E;F-E4VEZ93PO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-A8VAE4F5F97)E;F-E4VEZ
    M93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU
    M93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R
    M;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY5<V53;V9T5')A;G-A8W1I
    M;VY#86-H93PO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UN86UE/E5S95-O9G14<F%N<V%C=&EO;D-A8VAE/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A
    M;CPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N
    M9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @
    M(" @(#QD97-C<FEP=&EO;CY#;VYN96-T:6]N4')O<&5R=&EE<SPO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY0<F]P97)T:65S/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU
    M93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E
    M<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP
    M=&EO;CY!=71O4F5T=7)N5&EM96]U=#PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D%U=&]2971U<FY4:6UE;W5T/"]C;VYF
    M:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y
    M<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/C$P/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/D1I8W1I;VYA<GE#;&%S<SPO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1I8W1I;VYA
    M<GE#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P
    M97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>2TM
    M/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^4U%,17AE8W5T:6]N36%N86=E<D-L87-S/"]D97-C<FEP=&EO;CX*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4U%,17AE8W5T:6]N36%N86=E
    M<D-L87-S/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E
    M<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O
    M;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^
    M"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO
    M;CY$:6-T:6]N87)Y4')O<&5R=&EE<SPO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D1I8W1I;VYA<GE0<F]P97)T:65S/"]C
    M;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^
    M"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P
    M97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY397%U96YC949A
    M8W1O<GE#;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UN86UE/E-E<75E;F-E1F%C=&]R>4-L87-S/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL
    M86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93YC;VTN<V]L87)M971R:6,N:V]D;RYI;7!L
    M+FID8F,N<V-H96UA+D1"4V5Q=65N8V5&86-T;W)Y/"]C;VYF:6<M<')O<&5R
    M='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E-E<75E;F-E1F%C
    M=&]R>5!R;W!E<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y397%U96YC949A8W1O<GE0<F]P97)T:65S/"]C;VYF
    M:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y
    M<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T
    M>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG
    M+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY787)N3VY097)S:7-T
    M96YT5'EP949A:6QU<F4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y787)N3VY097)S:7-T96YT5'EP949A:6QU<F4\+V-O
    M;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R=64\+V-O;F9I9RUP<F]P97)T>2UV
    M86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P
    M97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^57-E4')E<&%R9613=&%T96UE
    M;G1S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^57-E4')E<&%R9613=&%T96UE;G1S/"]C;VYF:6<M<')O<&5R='DM;F%M
    M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N
    M9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV
    M86QU93YT<G5E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @
    M/&1E<V-R:7!T:6]N/E-Y;F-H<F]N:7IE4V-H96UA/"]D97-C<FEP=&EO;CX*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4WEN8VAR;VYI>F538VAE
    M;6$\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @(#PA+2UC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E5S94)A=&-H9613
    M=&%T96UE;G1S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^57-E0F%T8VAE9%-T871E;65N=',\+V-O;F9I9RUP<F]P97)T
    M>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N
    M/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF
    M:6<M<')O<&5R='DM+3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @
    M/&1E<V-R:7!T:6]N/D9L871);FAE<FET86YC94UA<'!I;F<\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y&;&%T26YH97)I
    M=&%N8V5-87!P:6YG/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N9FEG+7!R;W!E<G1Y
    M+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93YT<G5E/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*
    M(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N
    M/E-T871E;65N=$-A8VAE36%X4VEZ93PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/E-T871E;65N=$-A8VAE36%X4VEZ93PO
    M8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*
    M(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY3=&%T96UE;G1%>&5C=71I;VY4
    M:6UE;W5T/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+6YA;64^4W1A=&5M96YT17AE8W5T:6]N5&EM96]U=#PO8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FEN=#PO
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG
    M+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @
    M(#QD97-C<FEP=&EO;CY344Q%>&5C=71I;VY,:7-T96YE<D-L87-S/"]D97-C
    M<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4U%,17AE
    M8W5T:6]N3&ES=&5N97)#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\
    M+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @
    M(" \9&5S8W)I<'1I;VX^5')A;G-A8W1I;VY)<V]L871I;VX\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y4<F%N<V%C=&EO
    M;DES;VQA=&EO;CPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP
    M<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^
    M/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T
    M>2TM/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^36%N86=E9%)U;G1I;65#;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/DUA;F%G9612=6YT:6UE0VQA<W,\+V-O
    M;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/F-O;2YS;VQA<FUE=')I
    M8RYK;V1O+F5E+DI.1$E-86YA9V5D4G5N=&EM93PO8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \8V]N9FEG+7!R
    M;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY-86YA9V5D4G5N=&EM95!R
    M;W!E<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM;F%M93Y-86YA9V5D4G5N=&EM95!R;W!E<G1I97,\+V-O;F9I9RUP<F]P
    M97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A
    M+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/E1R86YS86-T:6]N36%N86=E<DYA;64]
    M:F%V87@O=')A;G-A8W1I;VXO5')A;G-A8W1I;VY-86YA9V5R/"]C;VYF:6<M
    M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*"B @(" @
    M(" @/&%U=&AE;G1I8V%T:6]N+6UE8VAA;FES;3X*(" @(" @(" @(" @/&%U
    M=&AE;G1I8V%T:6]N+6UE8VAA;FES;2UT>7!E/D)A<VEC4&%S<W=O<F0\+V%U
    M=&AE;G1I8V%T:6]N+6UE8VAA;FES;2UT>7!E/@H@(" @(" @(" @(" \8W)E
    M9&5N=&EA;"UI;G1E<F9A8V4^:F%V87@N<F5S;W5R8V4N<V5C=7)I='DN4&%S
    M<W=O<F1#<F5D96YT:6%L/"]C<F5D96YT:6%L+6EN=&5R9F%C93X*(" @(" @
    M(" @(" @/"]A=71H96YT:6-A=&EO;BUM96-H86YI<VT^"B @(" @(" @(" @
    M(#QR96%U=&AE;G1I8V%T:6]N+7-U<'!O<G0^9F%L<V4\+W)E875T:&5N=&EC
    M871I;VXM<W5P<&]R=#X*(" @(#PO<F5S;W5R8V5A9&%P=&5R/@H\+V-O;FYE
    &8W1O<CX*
    `
    end

  • I want to play a song I bought but when I press play it says I need to authorize my PC but when I  put in my Apple ID it says its already authorized. What should I do to be able to play the song?

    I want to play a song I bought but when I press play it says I need to authorize my PC but when I  put in my Apple ID it says its already authorized. What should I do to be able to play the song?

    Delete and redownload it if doing so is free in your country.
    (94038)

  • Is it Ok to put many classes in one file ?

    Hi all,
    This is another beginner question. I was wondering, is it good practice to put many classes in one single file? Sometimes I notice there are many classes inside one big file and sometimes each class is in its own separate file. Is there an advantage in separating each class in each different file? For e.g. one big file, called A.java:
    class A {
        public static void main(String[] args) { }
    class B {}   
    class C {}
    class D {}Is it better to have class B in a B.java file, and class C in C.java, etc? In the real-world workplace, what is the usual practice?
    Thank you for your replies.
    P/S : I love Java, it's so cool. :-)

    I have also seen situations, in large software systems, where a compile that fails partway through will leave the top level classes that do not match the file name unbuilt, and some compilers will then not be able to build, because they cannot map the class name to the source file.
    ? {?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to put multiple classes in a single file?

    Hello,
    I'd like to put mutliple classes in a single file. (This
    would be useful for grouping children that are minor extensions of
    parent classes or helper classes that are used by one class only).
    When I tried to put two classes in one file, I got this error
    message:
    5006: An ActionScript file can not have more than one
    externally visible definition: Notation.editField,
    Notation.labelField1
    This is the structure I used. Thanks in advance for your
    help.

    You can declare multiple classes in a single file, but only
    one can be
    within the package declaration. All class declarations
    outside the package
    are invisible to code outside the file.
    package sample
    public class SampleClass
    class SampleClassHelper
    class SampleClassHelper2

  • What is the best way to deploy/update custom security realm classes to WLS 6.0?

    From the WLS 6.0 console, I see that I can specify the Java class that
    implements my custom security realm but I am wondering what is the best way
    to deploy/update this code. I don't see a way to do this from the console.
    Does this mean that I have to manually copy the class files over that
    implement my custom security realm?

    Thanks Danut,
    A jar file seems to be a good way to package it up but it sounds like it
    still needs to be manually copied to each Weblogic server install directory
    post-installation and whenever it is updated. I thought it would be nice to
    be able to deploy/update the custom security realm by uploading it through
    the Console just as you can with web applications and EJBs.
    Brian
    "Danut Prisacaru" <[email protected]> wrote in message
    news:3aba2db0$[email protected]..
    You have to have your Custom Realm class in the class path. I usually havea
    jar file with all the Custom Realm classes and that jar I copy it in thelib
    folder. Then I modify "startWebLogic.cmd" and I add to the classpath
    ".\lib\CustomRealm.jar"
    set
    CLASSPATH=.;.\lib\weblogic_sp.jar;.\lib\weblogic.jar;.\lib\CustomRealm.jar;
    >
    Be aware that in order to have you custom realm besides creating thecustom
    realm using the console you also have to create a custom caching andchoose
    that one as your default caching realm.
    Here is how the security settings are looking in my "config.xml"
    <CustomRealm Name="CustomRealm"
    RealmClassName="Custom.appserver.weblogic.security.CustomRealm"/>
    <CachingRealm BasicRealm="CustomRealm" CacheCaseSensitive="true"
    Name="CustomCachingRealm"/>
    <Realm CachingRealm="CustomCachingRealm" FileRealm="wl_default_file_realm"
    Name="wl_default_realm"/>
    <FileRealm Name="wl_default_file_realm"/>
    <Security GuestDisabled="false"
    Name="mydomain" PasswordPolicy="wl_default_password_policy"
    Realm="wl_default_realm"/>
    Danut

  • Hello - I used a Sony DVD to burn 350 songs. When I put the DVD into another computer to rip those 350 songs, the 'import songs' button never appeared in the lower right hand corner of iTunes. What's preventing songs from being ripped?

    Hello - I used a Sony DVD to burn 350 songs from my iTunes library to share with a friend. When I put the DVD into my friend's computer to rip those 350 songs, the 'import songs' button never appeared in the lower right hand corner of iTunes. Anybody know what's preventing me from ripping what's on the DVD? 

    When I put the DVD into my friend's computer to rip those 350 songs, the 'import songs' button never appeared in the lower right hand corner of iTunes.
    The import command only works with audio CDs. So if you burned the files in mp3 format, try instead using the "File > Add file to library" or "File > Add folder to library" commands.

Maybe you are looking for

  • HT201250 Time Machine can no longer back up files

    I was using Time Machine to back up files to a WD Elements hard drive. Lately I started to get error messages the back-up failed. Previously Finder would list back-up files for that drive, but now it only shows empty folders. Get Info still shows 60

  • Question on PL/SQL / Insert Performance

    So I have a table (TABLEA) with one column that has approximately 420k records and a I have a second table (TABLEB) that stores data identified by a procedure. I have a PL/SQL Package with the two procedures. With the package I pass it two parameters

  • GUI, NullPointerException and WTK

    Hi There, i wrote this simple application: import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class HighUI extends MIDlet {      private Display display;      private Form form;      private TextField name;      private Tex

  • Is it method of creating workflow with screen is correct

    I have created the wF and web dynpro deswigned the screens for different steps which include condition, fork and message send this the way to interact the right way or otherwise develop through ABAP development. give some answers to the question

  • After Updating OS X from 10.8.2 to 10.8.3, Startup screen always crashes

    After Updating OS X from 10.8.2 to 10.8.3, Startup screen always crashes. I also submitted to Apple bug reporter with the Bud Id#13438371  Steps to Reproduce: 1-Press the startup button. 2-Loading circles appears on the screen, 3-Wait more than usual