Where is refresh in the API

I was working on a mxml page and tried ot script a method
called 'refresh'. FB3 said is was a duplicate method/invalid
override. refresh is not in canvas as an inheritted method public
nor protected. So, where is refresh defined in the FB3 API?

There is a method by the name of refresh() that exists for
the collection related classes (defined in the ICollectionView
interface and implemented by the ListCollectionView class). Canvas
does not have a refresh() method - did you see this in your code
hinting dropdown?

Similar Messages

  • Where can i download the api doc ?

    I'm writting Extension tool for jdeveloper
    In the development, i need to use many class from oracle.ide.* packages.
    But i cant find the api doc in oracle.com
    Dose anyone know where i can see them ?

    The extension API javadoc is included in the Online help in JDeveloper, or you can extract it from ${jdev.home}/jdev/doc/ohj/jdev-doc.jar.
    Thanks,
    Brian ([email protected])
    JDev Team

  • Where can I find the API specifications??

    Hi,
    I have been searching on the SUN website for the API specifications for J2ME. However so far I did not have any luck!
    I found the following document that can be seen from this link:
    http://java.sun.com/j2me/docs/pdf/cldc11api.pdf
    However I went to search for the Form class in this document but could not find it. Therefore I searched on Google for J2ME API, however I could not find anything either.
    Can someone please refer to me from where can I find the J2ME API specifications? Because without them I can hardly develop anything
    thanks & regards,
    sim085

    Download the sun WTK 2.2 and look in the docs folder

  • Where can I download the api's of java classes ?

    I'd like to download all the api's of java classes. I only found a lot of pages, but i don't like to download one after other for a very long time.
    Where I can find a complete document of java classes api in a single document?
    When I say api of java classes I mean the name of all java classes , it's methods, atributes, what the class does, and so on...
    For the JAVA 1.5.0 of course...
    Thanks.

    Go to http://java.sun.com/j2se/1.5.0/download.jsp and click the Download link where it says J2SE 5.0 Documentation.

  • Where can I find the API documentation for MIDP?

    on the website of sun.com there is only the API documentation of CLDC. However, the API doc of MIDP is missing. how are we supposed to program without the documentation?
    Thanx

    search jcp.org and you'll get the following:
    MIDP 1.0 http://www.jcp.org/aboutJava/communityprocess/final/jsr037/
    MIDP 2.0 http://www.jcp.org/aboutJava/communityprocess/final/jsr118/

  • Where can i find the api document of Oracle JDBC driver

    coz i find if u using stream to retrieve the Oracle LONG data field. Sometime it throwed an IOException (from the oracle.jdbc.driver.OracleInputStream). And i found there is a method in this class named resetLong(). So i wanna get some stuff to read, then i can know how does it work

    YiNing,
    Did you check this link,
    http://help.sap.com/saphelp_nw04/helpdata/en/87/3ef4403ae3db12e10000000a155106/content.htm
    Does it help? Also did you look into the Java Docs Section,
    https://help.sap.com/javadocs/index.html
    Regards
    Bhavesh

  • Help...where can i find the api for XSLTProcessor

    Anyone can help me on tis....
    i hav already
    import org.apache.xalan.xslt.*;
    to my program which look like tis
    //program Simpletransform.java
    //necessary import files
    import org.apache.xalan.xslt.*;
    import org.w3c.dom.Document;
    import org.xml.sax.SAXException;
    import org.apache.xerces.parsers.DOMParser;
    //Here we can load the given XML and XSL files,
    //transform the XML and store it in the output file.
    public class SimpleTransform {
    public SimpleTransform(String xmlFile, String xslFile, String outFile) throws
    java.io.IOException, java.net.MalformedURLException,
    org.xml.sax.SAXException {
    // Load the XSLT Processor.
    XSLTProcessor xsltProc = new XSLTProcessorFactory.getProcessor();
    // XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    xsltProc.process(new XSLTInputSource(xmlFile),
    new XSLTInputSource(xslFile),
    new XSLTResultTarget(outFile));
    System.out.println("************* The result is in the " + outFile +
    " file*************");
    //method : main is for testing the program and just creates an instanceand tests the results.
    public static void main(String[] args) {
    try {
    SimpleTransform st = new
    SimpleTransform("example.xml", "example.xsl", "example.out");
    catch (Exception e) {
    System.out.println("Exception caught = " + e);
    public SimpleTransform() {
    but still there is error which look like tis
    C:\A>javac -classpath C:\j2sdk1.4.2\lib\xerces.java;C:\j2sdk1.4.2\lib\xalan.jar
    SimpleTransform.java
    SimpleTransform.java:6: package org.apache.xerces.parsers does not exist
    import org.apache.xerces.parsers.DOMParser;
    ^
    SimpleTransform.java:19: cannot resolve symbol
    symbol : class XSLTProcessor
    location: class SimpleTransform
    XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    ^
    SimpleTransform.java:19: cannot resolve symbol
    symbol : variable XSLTProcessorFactory
    location: class SimpleTransform
    XSLTProcessor xsltProc = XSLTProcessorFactory.getProcessor();
    ^
    SimpleTransform.java:22: cannot resolve symbol
    symbol : class XSLTInputSource
    location: class SimpleTransform
    xsltProc.process(new XSLTInputSource(xmlFile),
    ^
    SimpleTransform.java:23: cannot resolve symbol
    symbol : class XSLTInputSource
    location: class SimpleTransform
    new XSLTInputSource(xslFile),
    ^
    SimpleTransform.java:24: cannot resolve symbol
    symbol : class XSLTResultTarget
    location: class SimpleTransform
    new XSLTResultTarget(outFile));
    ^
    6 errors
    CAn onyone help me???Thank you

    you are using an older version of xalan, & the latest version of xalan.jar does not have these classes anymore. to transform the given xml, use the following code :
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.Source;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.transform.stream.StreamSource;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    //Here we can load the given XML and XSL files,
    //transform the XML and store it in the output file.
    public class SimpleTransform
    public SimpleTransform() throws TransformerException, FileNotFoundException
    // Load the XSLT Processor.
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Source xslSource = new StreamSource( "config/birds.xsl" );
    Transformer transformer = tFactory.newTransformer( xslSource );
    transformer.transform( new StreamSource("config/birds.xml"),new StreamResult( new FileOutputStream( "config/birds.out" )));
    System.out.println("************* The result is in birds.out file*************");
    //method : main is for testing the program and just creates an instanceand tests the results.
    public static void main(String[] args)
    try
    SimpleTransform st=new SimpleTransform();
    catch(Exception e)
    System.out.println("Exception caught = " + e);
    also, use the latest version of the xalan jar, which is xalan2.6.jar

  • Where is the API for PKI authentication library in ColdFusion 9?

    Hello,
    I have to get PKI/certificates working with our ColdFusion application.  We're using CF9, and evidently there were calls added
    to this to help you get the cert, the distinguished name, etc.  So, what I am looking for specifically is where can I read
    the API for this?   I need to know the functions, tags, etc that I will be calling in order to get the info I need from the cert.
    Thanks!

    I was able to find something to try from the forum, although not explained well.  I had to use cfdump to see
    the different methods to use:
    <!---We need to get all of the required fields from the 509 cert and store those in session--->
    <cfset x509 = GetPageContext().getRequest().getAttribute("javax.servlet.request.X509Certificate")>
    <!---Debug prints--->
    <cfdump var=#x509[1].getSubjectDN().getCommonName()#>
    <cfdump var=#x509[1].getIssuerDN().getCommonName()#>
    <cfdump var=#x509[1].getIssuerDN().getOrganization()#>
    <cfdump var=#x509[1].getIssuerDN().getOrganizationalUnit()#>
    I saw some other solutions with cfscript, but that's overkill.  I also find it incredibly STUPID that
    the CGI variables for CERT_SUBJECT, etc, are only available if you use IIS.  Umm, who even
    USES IIS anyway?  People use Apache/Jrun more than anything.  I wasted a lot of time going through
    the CGI and asking questions on other forums about it.
    However, the above method is easy, and works.

  • Where are the API Docs of the appserv-rt.jar classes and others?

    Where do I find the API Documentation/Specification for the classes of :
    com.iplanet ...
    com.sun.appserv ...
    com.sun.enterprise.security ...
    The very of appserv-rt.jar and appserv-rt-ee.jar
    I need it for AS7 (J2EE 1.3) and AS8 (J2EE 1.4).
    Something like http://java.sun.com/j2ee/sdk_1.3/techdocs/api/index.html would be nice

    For AS8, the docs subdirectory under your installation directory will have javadocs for all classes in com.sun.appserv and javax... namespace.
    For AS7, what is it that you are specifically looking for?
    In general, com.sun.enterprise... classes are not documented. There are exceptions and you should be able to find them in developer's guide.
    Finally, you might want to look at the source code in the Open Source Application Server project GlassFish (http://glassfish.dev.java.net).

  • How to find the API name from the Integrator

    I am looking in a WebADI build solution.
    1) I need to find the API name, which is used by the Custom integrator to validate and insert the data into custom table.
    Can we find the source where WebADI integrator stores the API name.
    Please help me out in this.

    Satya,
    You are right that we are not supposed to change the Oracle supplied files. But some times you really don't have any other option. Some times Oracle support them selves ask you to change their programs.
    Anyway the Concurrent program definition is stored in BNE_PARAM_LISTS_B, BNE_PARAM_LISTS_TL, BNE_PARAM_LIST_ITEMS and BNE_ATTRIBUTES table. For a concurrent program with out any parameter there will be 6 records in BNE_PARAM_LISTS_ITEMS and BNE_ATTRIBUTES table.
    These racords are
    Application, Program, Description, Run date , Sub Request , End of Concurrent Request Parameters and Rest of parameters default.
    Look at these tables and you will know how Oracle has defined these Concurrent programs.
    HTH
    Dinesh

  • Downloading the API v.1.4.1_02

    Anyone know where I can download the API for j2sdk1.4.1_02 (or 1.4.1 for that matter)?
    Just the URL will do... don't wish to be sent to other user requesting the same thing.
    Thx!

    http://java.sun.com/j2se/1.4.1/download.html#docs

  • PI 7.11 - Where can I get the NEW java API's

    Hi,
    We use PI 7.0 in productive environment, but we plan a release update to PI 7.11. We have several Java Mappings for PI 7.0 with Java 1.4. So we have to upgrade this also to Java 1.5.
    We are using following SAP Java libs:
    - aii_map_api.jar
    - aii_mt_rt.jar
    - guidgenerator.jar
    - sapxmltoolkit.jar
    Where can we get the equivalent libraries of the PI 7.11 system. Are there new API's? Is there a documentation where to get this?
    Thx in advance
    Michael

    Thx !!!
    Quick answer )

  • HT5239 Where can I get Apple FIPS Role guide for user so that I can use the APIs from my application

    I am trying to use Apple's FIPS certified crypto library's crypto APIs in my application to do the crypto operations. For that I was asked to refer the "Role Guide : User" in the nist document. But I couldn't find the same. Can I know where I can download the same.

    The OS X and iOS programming documentation is the Cryptographic Services Guide, and related manuals.
    AFAIK, what you're probably after is the Common Crypto stuff that's part of libSystem.  See man CC_crypto for some introductory details of that, and there's a sample program available.
    The devforums.apple.com developer forums and the developer.apple.com web site will be better resources for programming questions than are these ASC forums (and that includes my answer here!), and the Fed-Talk mailing list might be of interest for this question.
    Given the usual arc these security questions follow, I'd suggest ignoring what I've posted here and directly contacting the Apple Developer Technical Services (DTS) folks, and ask for formal help with this.  The folks I've worked with over the years that were looking for FIPS 140-2 crypto stuff and similar usually have a requirement for a paperwork trail involved, and that means direct contact with the vendor when you cannot local published formal statements.   Not unofficial stuff from random folks like me posted here in ASC.  (There's an Apple contact on that FIPS page, BTW.)

  • Where is the API download for ADF Faces 10.1.3.2?

    I can still download adf-faces-10_1_3_0_4 which contains the API documents in a /doc directory.
    Where is the API download for ADF Faces 10.1.3.2?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                   

    .. will check if we can make it available
    Frank

  • Where can I find the original code for class in Java API

    I am learning Java programming and wanted to see how professionals handel all cases. Can anyone tell me where I can find the original implementation code for classes in Java API? It would be a great help for me.

    the basic source is where you installed java in a file called java.src, its either in the main dir of one of the sub dirs ( mmm ), contains all the source code for all the classes in the api.

Maybe you are looking for

  • HP Designjet 130nr driver.

    Hey! Where are we supposed to get the driver for my HP Designjet 130nr!? HP doesn't have one as the new OS X is supposed to have the drivers already built in. But nooooooooo it is not in the driver set. Now I have a printer that is unrecognized. Any

  • Upgraded itune to latest build and now it can't be launched

    i think i'm not the only one has this problem [quote] AppName: itunes.exe AppVer: 6.0.0.18 ModName: unknown ModVer: 0.0.0.0 Offset: 10001040 [/quote] this is the error info

  • Question about classpath and jar file

    I have a jar file (actually jhall.jar, the java help jar file). How do I uses its classes if I don't want to add it to the classpath. Currently, I have the jar file in the same directory as all my other classes.

  • Noise after ios 6 update?

    After updating my 4s to ios 6, I started hearing "crackling" and "popping" sounds during calls on my Jawbone icon.  Has anyone else experience this?

  • Issue with strange characters

    Hi All, A strange scenario .. In the source system A text appears to have a hyphen (-).. When my BW QA environment pulls the data in the PSA the same hyphen appears to be '#' but my Dev environment pulls the same record, it appears the characters sho