What is a state set?

im new to java programming and i really don't know most of the terms like state set. I was trying to figure out how to make a JScrollPane only appear when it was necessary when someone suggested to read the JScrollPane API. I don't even know what API stands for but i found the page. Now, i didn't understand any of it when it was suggested that i look at the JScrollPane constructors. Don't really know what those are either but i found a big heading that said Constructors and there was some stuff below it which i'm going to assume are the constructors. now, for each constructor there is an explination of what each constructor did. Each one of them envolved either getting or setting the "state set." There was a hyperlink that brought me to a new page all about the state set with a million other terms that i do not know. So, either you could just tell me a function to solve my original problem, tell me what a state set is in clear english, or you could be of absolutely no help to me at all and tell me to go to a page containing another API with more terms on it.

I would suggest slowing down and learn Java incrementally from the basic up.I have learned 3 programming languages before but never any that used GUI's. I know what object oriented programming is and right now i just need to learn the syntax of Java, i understand the basic concepts of loops and functions but i JUST NEED A FUNCTION! I will learn the terms soon enough im in a class that is learning java. I just want to know how to set a JScroll to appear only as needed!

Similar Messages

  • What does the acronym "PF" stand for in statement "SET PF-STATUS"?

    Hi ABAP Experts,
    I've been wondering this for quite a while.
    Thanks in advance.

    Hi Sandeep, Thomas, Ivan, BreakPoint, Rob and other ABAP experts,
    Thanks a lot for your quick response! I've awarded points accordingly.
    I tried to search SDN again using keywords "PF Personal Function" and found some posts similiar to mine:
    PF-STATUS
    full form of pf status
    It seems that only the ABAP team at SAP AG can give a final answer. For the moment, I think that "PF" most likely stands for "Program Function", not "Personal Function" because the statement SET PF-STATUS deals with the user interface of a program, or "Programmfunktionen" because ABAP keywords are English (though the term "Programmfunktionen" is a lot like "Program Function").
    Regards,
    Bo
    Edited by: Bo Wang on Oct 7, 2010 6:23 PM
    Edited by: Bo Wang on Oct 7, 2010 6:31 PM
    Edited by: Bo Wang on Oct 7, 2010 6:40 PM

  • What is open data set and close data set

    what is open data set and close data set,
    how to use the files in sap directories ?

    hi,
    Open Dataset is used to read or write on to application server ... other than that i am not sure that there exists any way to do the same ... here is a short description for that
    FILE HANDLING IN SAP
    Introduction
    • Files on application server are sequential files.
    • Files on presentation server / workstation are local files.
    • A sequential file is also called a dataset.
    Handling of Sequential file
    Three steps are involved in sequential file handling
    • OPEN
    • PROCESS
    • CLOSE
    Here processing of file can be READING a file or WRITING on to a file.
    OPEN FILE
    Before data can be processed, a file needs to be opened.
    After processing file is closed.
    Syntax:
    OPEN DATASET <file name> FOR {OUTPUT/INPUT/APPENDING}
    IN {TEXT/BINARY} MODE
    This statement returns SY_SUBRC as 0 for successful opening of file or 8, if unsuccessful.
    OUTPUT: Opens the file for writing. If the dataset already exists, this will place the cursor at the start of the dataset, the old contents get deleted at the end of the program or when the CLOSE DATASET is encountered.
    INPUT: Opens a file for READ and places the cursor at the beginning of the file.
    FOR APPENDING: Opens the file for writing and places the cursor at the end of file. If the file does not exist, it is generated.
    BINARY MODE: The READ or TRANSFER will be character wise. Each time ‘n’’ characters are READ or transferred. The next READ or TRANSFER will start from the next character position and not on the next line.
    IN TEXT MODE: The READ or TRANSFER will start at the beginning of a new line each time. If for READ, the destination is shorter than the source, it gets truncated. If destination is longer, then it is padded with spaces.
    Defaults: If nothing is mentioned, then defaults are FOR INPUT and in BINARY MODE.
    PROCESS FILE:
    Processing a file involves READing the file or Writing on to file TRANSFER.
    TRANSFER Statement
    Syntax:
    TRANSFER <field> TO <file name>.
    <Field> can also be a field string / work area / DDIC structure.
    Each transfer statement writes a statement to the dataset. In binary mode, it writes the length of the field to the dataset. In text mode, it writes one line to the dataset.
    If the file is not already open, TRANSFER tries to OPEN file FOR OUTPUT (IN BINARY MODE) or using the last OPEN DATASET statement for this file.
    IF FILE HANDLING, TRANSFER IS THE ONLY STATEMENT WHICH DOES NOT RETURN SY-SUBRC
    READ Statement
    Syntax:
    READ DATASET <file name> INTO <field>.
    <Field> can also be a field string / work area / DDIC structure.
    Each READ will get one record from the dataset. In binary mode it reads the length of the field and in text mode it reads each line.
    CLOSE FILE:
    The program will close all sequential files, which are open at the end of the program. However, it is a good programming practice to explicitly close all the datasets that were opened.
    Syntax:
    CLOSE DATASET <file name>.
    SY-SUBRC will be set to 0 or 8 depending on whether the CLOSE is successful or not.
    DELETE FILE:
    A dataset can be deleted.
    Syntax:
    DELETE DATASET <file name>.
    SY-SUBRC will be set to 0 or 8 depending on whether the DELETE is successful or not.
    Pseudo logic for processing the sequential files:
    For reading:
    Open dataset for input in a particular mode.
    Start DO loop.
    Read dataset into a field.
    If READ is not successful.
    Exit the loop.
    Endif.
    Do relevant processing for that record.
    End the do loop.
    Close the dataset.
    For writing:
    Open dataset for output / Appending in a particular mode.
    Populate the field that is to be transferred.
    TRANSFER the filed to a dataset.
    Close the dataset.
    Regards
    Anver
    if hlped pls mark points

  • What's the recommended setting for "Process memory usage" ("process virtual" in UI) for a 64-bit host on a 64-bit OS?

    Hi gurus
    In resource based throttling, what's the recommended setting for "Process memory usage" ("process virtual" in the resource based throttling tab of the UI) for a 64-bit host
    on a 64-bit Windows OS?
    According to MS (http://msdn.microsoft.com/en-us/library/ee308808(v=bts.10).aspx):
    "By default, the
    Process memory usage throttling threshold is set to 25. If this value is exceeded and the BizTalk process memory usage is more than 300 MB, a throttling condition may occur. On a 32-bit
    server, you can increase the Process memory usage value to 50. On a 64-bit server, you can increase this value to 100. This allows for more memory consumption by the BizTalk process before throttling
    occurs."
    Does this mean that 100 is the recommended setting for a 64-bit host on a 64-bit Windows?
    Thanks
    Michael Brandt Lassen

    Hi Michael,
    Recommended setting is the default setting which is 25 .dot.
    If your situation is abnormal and you see message delivery throttling state to “4” when the following performance counters are high or if you expect any of you integration
    process could have impact on following counters, then you can consider the suggestion by Microsoft. Don’t change the default setting.
    High process memory
    Process memory usage (MB)
    Process memory usage threshold (MB)
    You can see these counters under “BizTalk:MessageAgent”
    You can gauge these performance counter and its maximum values if have done any regression/performance testing in your test servers. If you have seen these counters having
    high values and causing throttling, then you can update the Process memory usage.
    Or unexpectedly you’re process high throughput messages in production which is causing these counters to go high and cause throttling, then up can update the Process memory
    usage.
    The above two cases where I know my expected process usage (by doing performance testing) or suddenly my production server processing has gone high due to unexpected business
    hike (or any reasons) which caused throttling, then do changes to default throttling setting.
    Just changing the default setting without actual reason could have adverse effect where you end up allocating 
    more processing capacities but the actual message processing message usage ever is low means you end up investing in underutilised resources.
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • What's the minimum setting for WL as a proxy server

              What's the minimum setting of weblogic.properties for WL as a proxy server?
              

    Hi Michael,
    Recommended setting is the default setting which is 25 .dot.
    If your situation is abnormal and you see message delivery throttling state to “4” when the following performance counters are high or if you expect any of you integration
    process could have impact on following counters, then you can consider the suggestion by Microsoft. Don’t change the default setting.
    High process memory
    Process memory usage (MB)
    Process memory usage threshold (MB)
    You can see these counters under “BizTalk:MessageAgent”
    You can gauge these performance counter and its maximum values if have done any regression/performance testing in your test servers. If you have seen these counters having
    high values and causing throttling, then you can update the Process memory usage.
    Or unexpectedly you’re process high throughput messages in production which is causing these counters to go high and cause throttling, then up can update the Process memory
    usage.
    The above two cases where I know my expected process usage (by doing performance testing) or suddenly my production server processing has gone high due to unexpected business
    hike (or any reasons) which caused throttling, then do changes to default throttling setting.
    Just changing the default setting without actual reason could have adverse effect where you end up allocating 
    more processing capacities but the actual message processing message usage ever is low means you end up investing in underutilised resources.
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • What is the factory setting pin code for my ipod touch?

    im looking to make a purchase in app on my ipod touch and i need to switch off the restrictions under general settings. in order to this i need the pin code which is 4 digits. this must be factory set as ive not set it previously.
    thanks

    A: what is the factory setting pin code for my ipod touch?

    There is no default setting. You have to set the passcodes. If you cannot remember them, then see:
    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
    Verify that you are using the latest version of iTunes before attempting to update.
    Connect your device to your computer.
    Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
    Select the Summary tab.
    Select the Restore option.
    When prompted to back up your settings before restoring, select the Back Up option (see in the image below). If you have just backed up the device, it is not necessary to create another.
    Select the Restore option when iTunes prompts you (as long as you've backed up, you should not have to worry about restoring your iOS device).
    When the restore process has completed, the device restarts and displays the Apple logo while starting up:
    After... [Show more]

    Read other 6 answers

  • Is there a risk of setting a console connection timeout and what is the recommended setting?

    Is there a risk of setting a console connection timeout and what is the recommended setting? Please suggest if there is any best prctice documentation that can be referred.

    Hi Henrik
    depend on what you need or what your security policy says for my lab gear i use 60 minutes. because i know how can access this. if you have gear outside in insecure space set it to a minimum or disable the console. everybody how can access your gear can break in. simple restart and boot w/o config. and you are in.
    it realy depends how secure is your space and how much security you need.
    and than the settings for policy have to match, what sec do you have if your console login and logout is secure. but when you restart you can simple break in by starting w/o config and than load it.
    HTH
    Patrick

  • HeLLO I AM USING AN IPHONE 5 From Last few days I DON'T KNOW WHAT HAPEND TO MY SET ITS DISTURBING ME A LOT DON'T KNOW WHY BUT I AM NOT ABLE TO UPGRADE ANY APPS BECAUSE WHEN I AM TRYING TO UPGRADE OR DOWNLOAD ANY APP THROUGH WIFI ND 3G BOTH AFTER SOMETIME

    HeLLO I AM USING AN IPHONE 5 From Last few days I DON'T KNOW WHAT HAPEND TO MY SET ITS DISTURBING ME A LOT DON'T KNOW WHY BUT I AM NOT ABLE TO UPGRADE ANY APPS BECAUSE WHEN I AM TRYING TO UPGRADE OR DOWNLOAD ANY APP THROUGH WIFI ND 3G BOTH AFTER SOMETIMES IT STOPS DOWNLOADING AND SHows THAT "UNABLE TO DOWNLOAD THIS APP" IT'S SHOWING THIS MESSAGE IN EVERY APP AND ALSO AT ITS DISTURBING ME AT THE TIME OF WATCHING ANY VIDEOS TOO. BECAUSE WHEN I AM TRYING TO WATCH ANY VIDEO IN YOUTUBE IT'S DISTURBING VIDEOS ARE NOT PLAYING ND SOUNDS ARE NOT COMING PROPERLY ND THE IMAGE QUALITY ALSO BECOMES POOR AND THE VIDEO STOPS AFTER SOME TIMES THIS PROBLEM IS HAPPENING AT ALL THE VIDEO ND IT'S HARASSING A LOT. THE SAME PROBLEM IS ALSO HAPPENING TO MY BROTHER'S PHONE TOO.. REQUEST TO APPLE PLEASE ANALYSE AND FIXED THE PROBLEM AS SOON AS POSSIBLE OR ELSE MAYB I NEED TO STOP USING APPLE PRODUCTS. CAUSE IT'S HARASSING MY DAILY LIFE A LOT....

    These are user to user forums.  You ARE NOT addressing Apple by posting here.
    Also, why are you YELLING at us??  Stop using ALL CAPS.
    What steps have you done to try and fix the problem?

  • What is the factory set password for the administrator for a macbook pro 13" retina display?

    what is the factory set password for the administrator for a macbook pro 13" retina display?

    Welcome to Apple Support Communities
    Macs don't come with a password. You have to set up the password during the initial setup. If you have forgotten your password, follow these steps to reset your password > http://discussions.apple.com/docs/DOC-4101

  • What Is The Best Setting To Use To Import Music?Please Help.

    Hi, All
    I have got an 80GB Apple Video iPod And I am still trying to figure out how to work it as I am new to using iPods.
    What is the best setting to use to import CD Music and Music from the Internet to iTunes?? as I would like to listen to the highest quality there is on iTunes and my 80GB Apple Video iPod.
    The settings are: ACC Encoder, AIFF Encoder, Apple Lossless Encoder, MP3 Encoder, WAV Encoder. If you have not got them to hand.
    Many Thanks For Reading This And Replying To It, Much Appreciated!!
    I Hope You All Have a VERY Merry New Year!!
    Kind Regards, Rocky Robin

    There really is no BEST setting. The "best" setting is the one that sounds the best to you.
    Having said that, you also asked what setting provides the highest quality audio. In that case, you need to use a lossless format, such as AIFF, WAV, or Apple Lossless. MP3 and AAC are both compressed formats, and will not provide as good of an audio quality as a lossless format.
    My personal preference would be Apple Lossless, but any of the lossless formats will produce an almost identical quality to the CD track.
    Keep in mind, the files will be quite large.

  • On my mini ipad, I cleared the cookies/histories in the safari setting.  But what does the advance-setting of the clearing the website data does?  What's that used for? Thank you!

    On my mini ipad, when I'm on the internet -- a few times I will see a blue small pop-up boxes telling me to allow down/load or add something like the bubble-splash game or something similar.  I jusr click ignore and it goes away.. I'm not sure why it's showing up lately.. I'm not sure if it's a virus or hacked in or a web brower matter..
    Should I go to the cookies/histories in the safari setting and have it cleared out?  Will that help resolve that?? 
    And what does the advance-setting of the clearing the website data does?  Sorry, I'm not familiar.. what's is that used for? Should I use that feature as well?? Thank you!

    This indicates corrupt files.
    A restore should resolve.

  • What is a data set

    Hi can any body tell me What is a data set, Plz clarify my dought.
    Regards
    manikanta

    Hi Mani,
    The sequential files (processed on application server) are called datasets. They are used for file handling in SAP.
    Bye,
    Amit

  • What is the best setting for export movie in widescreen format?

    Please tell me what is the best setting for exporting movie in Widescreen format?

    Like in After effect we use "NTSC D1 Widescreen Square Pixel".,
    Carefully examine the codec and pixel dimensions of that output file. That's certainly easy for an experienced VFX person like yourself.
    Then carefully look over the presets in FCP to find the same attibutes. You can also use the online help system for FCP and search for "D1"
    However, your question remains unanswerable because we don't know how you're getting to the monitor. What are you playing back you AE sequences on that displays them on your LCD? You're assuming we know what you're doing and, I assure you, we do not.
    bogiesan

  • What is the best set up for video editing?

    What is the best computer? The best software? The best external storage? The best ram? 3D editing? Everything!!!!!!
    Running full HD and 720p at 60 fps videos. Clips ranging from a few seconds to 10-30 minutes.
    Cost isn't an issue.
    What is the best set up, not the most excessive. If it doesn't need to be there or it isn't greatly needed I would like to know. This is looking at the production aspects, not the camera and such. What is the best plug in for slow motion? Pros and Cons of the set up?
    I would greatly appriciate everyones input in this. Thank you so much.

    That is a hard question to answer.. Nothing is best for everyone... However if i am to generalize it I would put it this way.. If you want to cut everything from a short promos to hollywood pictures..
    A high end windows pc (only cause mac pro hasn't been updated in ages)
    Avid Media Composer with Nitrus DX
    Two monitors
    Broadcast monitor
    HD Deck
    pimping 5.1 speakers
    A good mixer
    You are looking at over 70,000 or 80,000, could even approach even more.. HD decks run atleast 15k.
    If price is not an issue then there you go....
    However this is not realistic for most people nor best solution by no means... I run a macbook pro with Avid (as primary) Final Cut 7, Final Cut X (for practice, didn't have to use it for a job yet), and Premiere (just in case)
    I am a final cut child who grew up on it and love it however everything I am doing in last few years is on AVID...
    Have a second monitor..
    I am very portable and rest of the gear I usually get where ever I work at.. I am looking into getting a good broadcast monitor connected with AJA thunderbolt..
    Like I said this is very open question, there is no (BEST) it all depends what you will be doing.. If you get AVID (which can do everything, however is cluncky as **** and counter intuitive) but you are only cutting wedding videos and short format stuff, it would be an overkill galore.. Just get FCP X in that case... Simple,easy, one app...
    Be more specific and you will get clearer answers..

  • So what is the Database setting in Preference for?

    In the years of using Safari, in the Preferences it has settings for Database under Security tab. I've left it at the default 5mb. Whenever I clicked Show Database nothing was ever in there. But yesterday there were two items. I Removed them not paying any attention really. Then today another appeared named ourstage.com.
    I've never been to that site or heard of it. So I went to it. Nope nothing I've ever been to.
    So what is this database setting? Should I leave it active? What benefit does it do for Safari or me as a surfer?
    Thanks
    Using the latest Safari released, Version 5.0.3 (6533.19.4) and 10.5.6

    HI,
    http://www.apple.com/safari/features.html
    See: HTML5 Offline Support
    I have "twitter.com" on mine. That way I never have to re sign in. A "super cookie" ... Not all sites support that feature.
    Carolyn

Maybe you are looking for

  • Purchasing Metrics Report

    vendor   | Safety Stock|  TARGET  |   ACTUAL|      EXCESS INV |  UNDER SAFETY STOCK Buyer 1  $2,000.00       $2,400.00     $2,600.00     $200.00               $0.00 Buyer 2  $2,700.00       $3,150.00      $2,400.00     $0.00                   $300.00

  • Creating a brochure

    Hello folks, I have been ask to design a brochure for roofing company. They want it to be done in professional matter, so I am wondering whether iWork is design to produce professionally looking brochures and flyers? The idea is, that I would do the

  • Filteration not working after Upgarding 8.8 PL 20

    Hi All, We have recently upgarded sap B1 8.8 to PL 20 .In  AR invoice cardcode choosefromlist I have applied a filteration .After upgardation the choose fromlist filteration is working fine but when   we type something in the cardcode text box it wil

  • Being the adminstrator how cn i trace the history of the private browsing on my computer by other users or myself

    i would like to know if there is any option to trace the web browsing in private setting on my computer by other users who use my computer

  • Need help, No audio for mpeg on Quicktime

    Ok, the other day i downloaded a third party movie player that played movies that quicktime wouldnt play. It was MplayerOSXB8r5 and it worked ok. When i tried to play my regular mpegs that worked fine with quicktime i got no audio. the avi files work