Is there an object which resembles Moving S, N, W, E in JAVA?

I am trying to build a GUI which is supposed to use an object which
has four arrows indicating moving a picture south, north, west, and north.
Is there such an object available in java? I can not imagine that I
have to create such thing myself. Thank you.

would this fit ur need?
have a jlabel inside a jscroll panel and hide the scroll bars and add buttons on the side to act as the scrollbars?
so use like borderlayout and have the north button in the north part etc...then have the jscrollpanel in the middle which contains the jlabel which contains the image...
im not making any sense?

Similar Messages

  • Package assigning issue to object which is moved from other system

    Hi Experts,
    We have moved one develoment (workflow development) from one server to another server with basis people help and
    can see everything perfecly in my system . But , i need to save them under my own requyest ,then only i can move them to produciton. I am doing in a way by reassigning under my package but it is saving under request only with different
    naming as not same of source system .
    For ex:
    For my stem: Saving like below :
    Object Directory Entry
        R3TRPDTS91000189
        R3TRPDTS91000191
    But for source system :
    91000188
    will all of them move without any issues or am i doing in wrong way ?
    Tahnk you in advance.

    Hi,
    If i understand your question right then you want to ask why transport name is different between different system.
    Answer is when you create transport request in any system then it is created like <SID><transport number>. So, if you are creating it in different system then it will give you different name as SID and transport sequence number will differ.
    If you want to save it in your own request then make a copy of transport in development system from your user id and then move it to test and production.
    Thanks
    Sunny

  • Motion Tracking: How to link a object which is not the tracked one?

    Hello,
    I have a video, its a landscape and the camera is moving from left to right. I want a flare appearing on the right side. There is one point which is always in the picture, I used this point to track the motion.
    But the problem is, when I want to link optical flares with the tracking point, the flare is always ON the tracking point, but I want it a little bit more on the right side...
    How is it possible to link a Object which is not exactly on the tracking point?

    Usually you would apply the tracking info to a null and then use an expression to tie the position property of whatever you are trying to attach to the null with a simple expression. If you need update the position then you can either add value + to the front of the pickwhip generated expression or, and sometimes this is best, add a second null, parent null 2 to null 1 and then use the a layer space transformation expression on the position property of your effect. The expression looks like this:
    p = thisComp.layer("Null 2");
    p.toComp([0,0,0]);
    If I did not if I did not accurately understand the problem then please post a screenshot of your project with all of the properties for the layers in question revealed.
    Here's what a project would look like:

  • Numbers Sort function. In Numbers 09 there was 'rearrange' which worked perfectly. New Numbers 13 has Sort by column but I can't get it to work. is there a bug?

    In Numbers 09 there was 'rearrange' which worked perfectly. New Numbers 13 has Sort by column but I can't get it to work. is there a bug?

    Numbers '09 has a Reorganize panel and the top section of that panel is for sorting. Numbers 3 also has the ability to sort and it works.  However, Numbers '09 and Numbers 3 sort differently.
    In Numbers '09, if you had a formula such as =Table 1::A1 and if a sort of Table 1 moved cell A1 to A20, the formula would change to =Table 1::A20. In Numbers 3, the formula would stay =Table1::A1.

  • Why wait() is there in Object class why not in Thread class

    why wait() is there in Object class why not in Thread class .
    while we use wait() in the case of thread environment?
    If there is any situation where we use it without using threads please mention with example. or link to that example..

    839091 wrote:
    The question still remain un-answered as the answers provided are not clear. Can anybody explain why wait(), notify() methods are available in Object class and not thread?What part of the answers given did you not understand?
    Have you even tried writing any code that uses wait/notify and thought about how you'd write the same code if they existed only on Thread rather than on Object?
    Have you studied the basics of Java's multithreading?
    Do you know what a lock is?
    Do you know what the synchronized keyword does?
    Do you understand the relationship between synchronized and wait/notify?
    If you can answer yes to these questions, then the reason that wait/notify exist on Object should be obvious. So, which of the above are "no"?

  • OCCI BUG! Error reading Objects which contain NULLS

    The original problem was that I couldn't retrieve a SDO_GEOMERTY object from a table. Using OCCI and the OTT utility I always got assertions and exceptions.
    Various people have already reported this problem (e.g. Hu Cao, "HELP!! operating SDO_GEOMETRY with OCCI" ).
    After several hours of testing I found the real problem: When ever an object contain NULLS the problem appears.
    Eg. the "occiobj"-demo works fine with the original data. However, after setting one value in a publ_address object to NULL
    eg. UPDATE publisher_tab SET publisher_id=11, publisher_add=publ_address( NULL , 'NEW YORK') WHERE publisher_id=11;
    the demo program crashes!!!
    After discovering this, I generated a SDO_GEOMERTY object containing no NULLS and suddenly my program was able to retrieve the object.
    Consequently there is only one big problem remaining:
    A valid SDO_GEOMERTY object has to have NULLS in it!!!!
    Comments please
    Johannes
    (I'm working with Win2K and the Oracle 9i Client. The bug appears in conjunction with both Oracle 8.1.7 and Oracle 9i)

    I downloaded the Oracle 9i Release 2 (9.2.0.1) Client for Win and there I have less problems to get objects which contain NULLs.
    Now if a standard-typed member (of an objects) is NULL, OCCI recognizes this correctly and the program never crashed again.
    However, there is one BUG remaining. If an object-typed member is NULL the program still crashes.
    Eg. if the SDO_POINT member (type MDSYS.SDO_POINT_TYPE) of an MDSYS.SDO_GEOMETRY object is NULL,
    the program crashes in the
    void sdo_point::readSQL(oracle::occi::AnyData& streamOCCI_)
    function (which was generated by the OTT utility). It seems that in function
    void sdo_point::readSQL(void ctxOCCI_)
    the streamOCCI_.isNull() command doesn't recognize that the sdo_point object is NULL.
    (see source code below)
    WITH THIS BUG YOU CANNOT GET A MDSYS.SDO_GEOMETRY OBJECT WITH OCCI!!!
    Has anybody solved this problem? Is there a bug fix?
    Thanks in Advance
    Johannes
    void sdo_point::readSQL(void ctxOCCI_)
    sdo_point *objOCCI_ = new(ctxOCCI_) sdo_point(ctxOCCI_);
    oracle::occi::AnyData streamOCCI_(ctxOCCI_);
    try
    if (streamOCCI_.isNull()) // <-- doesn't recognize that the object in NULL
    objOCCI_->setNull();
    else
    objOCCI_->readSQL(streamOCCI_); // <-- consequently the actual readSQL is called, which crashes...
    catch (oracle::occi::SQLException& excep)
    delete objOCCI_;
    excep.setErrorCtx(ctxOCCI_);
    return (void *)NULL;
    return (void *)objOCCI_;
    void sdo_point::readSQL(oracle::occi::AnyData& streamOCCI_)
    X = streamOCCI_.getNumber();
    Y = streamOCCI_.getNumber();
    Z = streamOCCI_.getNumber();

  • Last active change request of a object which has been transported

    Hi to all,
    I need a method to obtain the last active change request of a object which has been transported to the corresponding target system. I know that the CR tables are E070 and E071, but how can I know the last active and transported CR of each object? Any suggestion?
    Thank you very much,
    Antonio

    Hi Antonio, As u are aware that you can get TR information from E070 and E071 tables.From these two tables we can get the latest TR. In table E070 there are two fields with AS4DATE, AS4TIME.So, U can find the latest transported object on these two fileds.Also, u need to check the TRSTATUS field which specifies whether the object is transported ( R Released) or still Modifiable( Active as D).
    However this table will also contains subtasks and main request. This can be diffrentiated with the help of STRKORR field of E070. If blank then its a main req else its a subtask where the field would contain the Main Request No.
    Hope this would be of some help for u r development.
    Regards,
    Swaroop

  • How to get the Objects which are used in the webi Report.

    Hi Expert,
    I am trying to get the list of  WebI reports and Objects which are present in the report at  BO 4.0.
    I can able to get details  for only the list of reports and universes.
    Could  any one help me to get those details.
    Regards,
    Murali S

    With 4.0, there is no longer a way to do this using just the .NET SDK because the ReportEngine SDK no longer exists for .NET.  Instead, you'll have to look at using the RESTful Web Services SDK for Webi which runs in the Web Application Container Server on your report server (NOT on the web server!)
    RESTful web services are platform-independent and don't require the installation of any SDK files.  Everything is done through standard HTTP Get, Put, and Post commands and the results are returned in either XML or JSON format.  You don't mention which service pack of 4.0 you're on, but the RESTful web services have evolved over the course of the 4.0 service packs, so more recent is definitely better.
    You can find the documentation for this in the "Development Information" section at help.sap.com/bobip40.  There is also a "space" on SCN for this at http://scn.sap.com/community/restful-sdk and there are some links on this page for various resources and sample code.
    -Dell

  • Authorization objects which contain company code field

    Hi,
    We are looking for list of Authorization objects which contain company code field for Audit. The listing should have Role, Authorization obj and the <b>company code and values</b>.
    Is there any we can query this info.
    Thanks,
    Sam
    Message was edited by: Sam

    Hi,
    You can use the follwing
    in USR12 table
    in USOBT table (but you get the details for the Auth Obj in the Tcodes and their field values.
    But as far as my knowledge goes you will get all the Auth Obj with Company code field
    Caution: If there are some objects in not check or are which are not in any tcodes then they will not be captured.
    But they are very less I guess and so i think you can capture most of the Auth Obj I guess
    Message was edited by: Manohar Kappala

  • Solution to: javax.naming.AuthenticationException.  Root exception is java.lang.SecurityException: attempting to add an object which is not an instance of java.security.Principal to a Subject's Principal Set

    Hello world,
    To anybody who receives this irritating error in a Java client
    application attempting to access Weblogic Server 6.1 (and possibly
    weblogic server 6):
    javax.naming.AuthenticationException. Root exception is
    java.lang.SecurityException: attempting to add an object which is not
    an instance of java.security.Principal to a Subject's Principal Set
    The cause of your problem is having JAAS explicitly in your classpath.
    It somehow messes up authentication to WebLogic. Remove it and your
    problem will disappear.
    The complete exception was:
    javax.naming.AuthenticationException. Root exception is
    java.lang.SecurityException: attempting to add an object which is not
    an instance of java.security.Principal to a Subject's Principal Set
         at javax.security.auth.Subject$SecureSet.add(Subject.java:1098)
         at weblogic.common.internal.BootServicesStub.writeUserInfoToSubject(BootServicesStub.java:72)
         at weblogic.common.internal.BootServicesStub.authenticate(BootServicesStub.java:80)
         at weblogic.security.acl.internal.Security.authenticate(Security.java:108)
         at weblogic.jndi.WLInitialContextFactoryDelegate.pushUser(WLInitialContextFactoryDelegate.java:509)
         at weblogic.jndi.WLInitialContextFactoryDelegate.newContext(WLInitialContextFactoryDelegate.java:364)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:336)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:208)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:149)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
         at javax.naming.InitialContext.init(InitialContext.java:222)
         at javax.naming.InitialContext.<init>(InitialContext.java:198)
         at au.com.orrcon.orrconcentral.Application.<init>(Application.java:87)
         at au.com.orrcon.orrconcentral.Application.getApp(Application.java:52)
         at au.com.orrcon.orrconcentral.orrconCentral.<init>(orrconCentral.java:130)
         at au.com.orrcon.orrconcentral.orrconCentral.main(orrconCentral.java:219)

    Steve Wesemeyer <[email protected]> wrote:
    I have encountered the same problem and I do not have JAAS on my classpath
    at all (unless it's there by default). Are there any other possible
    causes for this?
    Cheers,
    SteveA note to all who read this thread:
    I also had to remove Sun's j2ee (version 1.2) from my client's classpath before
    the same problem went away. 1 programmer day down the drain....
    Regards,
    MG

  • Collection object which allows duplicate keys

    I wanted to know if there is any Collection object which allows me to store multiple values for a key.
    I have the data:
    key "a" - value "0"
    key "a" - value "1"
    key "a" - value "2"
    key "b" - value "3"
    key "b" - value "4"
    key "c" - value "5"
    Is there some collection object where I can store the above data which includes duplication of keys?

    No. The values do not need to be stored twice. What I wanted to know
    was if a key [say a in this case] can be repeated so as to store multiple
    values [0, 1, 2] against it?Well, the solution is simple then: use a Set (no matter which one)
    as the value part and collect all the (duplicate?) values in that set.
    Something like this will do:public class Multi {
       private Map map= new HashMap();
       public void put(Object key, Object value) {
          Set values= (Set)map.get(key);
          if (values == null)
             map.put(key, values= new HashSet());
          values.put(value);
       public Set get(Object key) {
          return map.get(key);
    }this was from the top of my head, typed in in a silly little reply box,
    so no warranties apply etc. ;-)
    kind regards,
    Jos

  • To find out the object which called a method

    Hi all,
    Is there any way to findout the object which called a class method.
    The object name is required inside the method.
    Thanks in advance,
    Sreekanth

    Hi Sreekanth,
    You can do it by reading the CALL STACK.
    At the beginning of your method put the following code:
    data:
        begin of stackItem,
          program        type SYREPID,
          include        type SYREPID,
          line           type i,
          eventtype(12)  type c,
          event(70)      type c,
          flag_system(1) type c,
        end of stackItem,
        stack like standard table of StackItem.
      call 'ABAP_CALLSTACK' id 'DEPTH' field 2 id 'CALLSTACK' field stack.
      read table stack into stackitem index 2.
      MEssage i002(sy) with stackitem-program.
    Here stackitem-program is the calling program.
    Cheers,
    Aditya

  • How to find list of accounts which are moved out?

    Hello Experts,
    Can anyone please tell me how to find inactive accounts i.e. which are moved out.
    following logic has been given but i am not able to find the inactive accounts.
    The inactive accounts can be identified by the Move-In/Out dunning procedure.
    is there any table where i can find out?
    Thanks,
    Sarang
    Edited by: sarang gujrati on Dec 30, 2008 10:26 AM

    Query on table :  EVER.
    select vertrag from ever where auszdat(move-out) = sy-datum.
    EVER table
    EINZDAT ( Move-in date)
    AUSZDAT( Move-out-date)
    EAUS    ::  Move-in Doc. for Cont Account.
    EAUSV  ::  Move-in Doc. for Cont.
    You can query on these tables also.
    Let me know if you need more information on this.
    Regards,
    Shiva Kumar

  • Is there any BAPI which combines web and SAP??

    Is there any BAPI which combines web and SAP??

    Hi Krishna,
    <b>Good .. check the following documentation
    BAPIs are technically nothing else but RFC-enabled function modules meaning that they provide us with external access to the SAP system.
    However, BAPIs are more than "normal" RFC-enables function modules in that they generally access SAP business objects (like customer, sales order, etc.).
    Usually, a BAPI corresponds to a certain dialog transaction dealing with a SAP business object (e.g. BAPI_USER_CREATE -> SU01 to create SAP users).
    In web terms RFC is similar to HTTP and BAPIs are CGI applications.
    RFC will normally provide sy-subrc 0 or >0. Most of the BAPIS will provide a return-structure.
    RFC and BAPIs are remote enabled function modules. They are practicly the same. A BAPI is one step further as it usually is a self contained business function, such as "Create Purchase Order", or "Change Sales Document". BAPIs interface is very well defined and documented. BAPIs can be found in the BAPI browser via transaction BAPI. RFCs are just remote enabled function modules.
    refer links,
    http://searchsap.techtarget.com/ateQuestionNResponse/0,289625,sid21_cid558752_tax293481,00.html
    http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm
    http://www.sap-img.com/fu033.htm
    http://www.sap-img.com/abap/ale-bapi.htm</b>
    Good Luck and thanks
    AK

  • HT201299 Is there an App which switches on Cellular data at a Particular time of day and switches off as well? if not someone should make an app

    Is there an App which switches on Cellular data at a Particular time of day and switches off as well? if not someone should make an app for that

    No, there are no apps that can do that, as no app would have access to the necessary API's to perform such a task.

Maybe you are looking for

  • Need Help with a Java Question Plz

    Hi Could someone help me out with this please? I need to know the difference between the two String methods equals and equalsIgnoreCase Thanks

  • My muse website, when uploaded, jumbles quotation marks, bullet points and apostrophes to appear as • and â€? Why?

    My muse website jumbles quotation marks, bullet points and apostrophes to appear as ’. Its fine when I preview in browser, only once it's been uploaded do the marks become jumbled. Why?

  • SRM MDM with Multiple Repositories and required S&A.

    Hello everyone, We are in the planning process to migrate from CCM to MDM. Our current environment has two separate customers running on two separate SAP clients in SRM 5.0 using the internal CCM (one SAP SRM instance, 2 separate SAP clients). In MDM

  • RMI direction question

    Hi All, I am new to Java and would like to write a robust multi-tier client server application and is not certain whether RMI is the best approach to use. As a result, here are the following questions on this topic: ( i ) Basically, I need to be able

  • Row Values To Columns.

    Hi, I'm looking to cut row-values to columns and here is my data-set and my objective... delimiter ( for readability ) : "," ( comma ) column1, column2, column3, column4 10, name=john, age=30, state=ca, country=usa 20, name=jane, age=25, null, null O