Cast does not

The code refers to a drag and drop in a table
When I run
public boolean importData(TransferHandler.TransferSupport supp) {
   try { 
        System.out.println("Class name "+supp.getComponent().getClass());
        GridC theGrid= (GridC)supp.getComponent();
        System.out.println("Import data test "+theGrid.getSelectedRow());
      } catch(Exception e) {
        System.out.println("Import data cant cast "+e.getMessage());
      }
}
the message is
Class name GridGen.GridC$ 1
Import data can't go up $1 GridGen.GridC cannot be cast to GridGen.GridC

GridC is declared like this:
public class GridC extends JComponent implements TableModelListener  {
...
}
What is $ 1?
Can I do this casting work?
Thank you

GridC$ 1 is an anonymous inner class within GridC.

Tags: Java

Similar Questions

  • free hosted type does not appear in chrome

    Designed and tested the site [personalsuits.nl] several times with businesscatalyst, nothing was wrong. Everything seemed ok.

    Use the hosted free typography USW geometry. Now I have uploaded to an ftp server to publish, the cast does not work in Google chrome and firefox on my DESK [modifies it the Georgia or something like that].

    On the other hand, it looks good in Safari...

    When I go to the site on my TABLET, is authorized in all browsers [chrome and safari, firefox and Opera].

    What's wrong?

    Does anyone have a solution?

    Thanks in advance!

    Hans

    Problem is solved. It was a mistake made at the server end.

    Thank you for you cooperation.

    Changed the effect of scrolling: thank you for that as well.

    Hans

  • AE - layer which casts the shadow but does not light?

    Hello

    First of all, I use the AE CS4 (because of the 32-bit version) and I have a little problem here:

    Please check this picture below:

    ae.png

    As you can see, I have a rectangle and there's shadow in the back beneath it. What I want to do, is that I want to create this rectangle and have SHADOW APPLIED on it but I don't want to be affected by the light solid (as you can see, there is a ugly gradient caused by light).

    I tried to activate the Shadows 'accept' and deselect 'accept the lights', but it works because the layer does not accept shadows lights it does not accept, either. Any ideas?

    Thank you.

    You try the right box. If I understand your request just set solid white to shadows agrees with all other hardware options to their default values. Here's what it looks like:

    I pressed the U key twice to reveal all the settings that have been modified by the default values.

  • One of the sites I visit does not respond when I use my wi - fi.

    I have an iMac, iPhone and the iPad. This site (www.cheapjoes.com) is accessible via my iPhone, using Verizon, only. When I am connected to WiFi, it says "the server unresponsive. This happened for several days, and this is the only site doing this. I have restarted the iMac and iPad, deleted the cookies from this site, restarted the wi - fi, all to nothing does not. Can you help me?

    You can try things:

    1 clear the DNS cache: http://osxdaily.com/2015/11/16/howto-flush-dns-cache-os-x-elcap/

    2. check the hosts file: cast Terminal, located in/Applications/Utilities/and type the following command (followed by enter): sudo nano/private/etc/hosts

    You will be asked your password, but that's OK. Copy and paste the result in a reply to this topic. Subsequently, you can quit Terminal (Type ctrl-X first).

  • Why do code grayscaler site image Web does not work with Mozilla Firefox, but it does to another browser?

    I just noticed that my code (in my blog site), which is a regular code that allows the image to transform into its form in grayscale and cast its original color, does not work with the Mozilla Firefox browser. But with other browsers, it works. I hope you can help me with this little problem. Thank you!

    Should I use a CSS rule that is similar to:

    filter: grayscale(100%)
    

    This property is not yet implemented in Firefox. It is supposed to be implemented in Firefox 34, according to https://developer.mozilla.org/en-US/docs/Web/CSS/filter

  • HP Deskjet 990cxi does not print color

    HP Deskjet 990cxi had for many years with no problems.  Once the color has begun to come out in pink, I replaced the cartridge from the printer and now it does not print in black and faded rose.  I replaced the cartridge with an another new and still the same results.

    Can someone help and let me know what I need to do?

    Hello LoBaan,

    Welcome to the Forums of HP Support! I see that you are not able to print in color on your HP Deskjet 990cxi, you replaced the cartridges without success. I would like that you start here: lack of color, wrong color or cast in print, follow these steps to resolve the problem you are experiencing.

    Let me know the results, I'll watch for your reply.

    Thank you

  • Den inst and Mettler balance does not not for the Visa print command

    Hello, I am working at the interface a S-8001 Instrument in Denver and an analytical balances Mettler Toledo PB5001 in the same .vi. Using the subvi VISA I can get two scales to account for their mass in the .vi, but only if I send them constantly of the data (i.e., baud and comm port, etc. are configured correctly). My problem is that ongoing surveys are both unnecessary and are prone to error and the .vi are save only a part (or a zero) in any event given sample. I can confirm in addition to using hyperterminal print control correct for the Denver Instrument balance is "esc + P", and I think that the command of Mettler is a variant of '' IF. '' However, enter either of these commands (and other variations) in the terminal 'chain to write' the visa write .vi does not appear to send the necessary information to the balance to deal with the measure. I spoke with support technique both Metter and DI and after spending time with each other that they were unable to solve the problem... but suggested that perhaps the wonderful world OR maybe get an idea. Forward to your response. Thank you!

    How do you send the esc character? You can just type esc. Hex 1B then you could do a right-click on the control of the chain and select "hexadecimal display. There are other such features a cast and table byte in string that are useful when doing non-ASCII.

  • phoneCallLog remove still does not?

    There are several postings on the removal of the phoneCallLog and it does not work. I wonder if this problem has been resolved. I wrote the code to remove the last entry, including suggested 2 seconds sleep before attempting to remove. The deletion is verified by make me a reminder at CallLogRemoved.

    However, the entry is always present in the log. I tested in 4.6 and 4.7. Someone knows the status of this problem or if there is a solution.

    Try with this code:

    public void callLogAdded(final CallLog cl) {        if (cl instanceof PhoneCallLog) {//discard conference call log
    
                UiApplication.getUiApplication().invokeLater(new Runnable() {
    
                    public void run() {                    PhoneLogs pl = PhoneLogs.getInstance();                    long clTime = cl.getDate().getTime();
    
                        if (!deleteCallLog(pl, PhoneLogs.FOLDER_MISSED_CALLS, clTime)) {                        deleteCallLog(pl, PhoneLogs.FOLDER_NORMAL_CALLS, clTime);                    }                }            }, 800, false);        }    }
    
         /**     * @author Soleil www.i-softwarelabs.com     * @param pl PhoneLogs instance     * @param folder PhoneLogs.FOLDER_*     * @param clTime calllog's date     * @return      */    private boolean deleteCallLog(PhoneLogs pl, long folder, long clTime) {        CallLog callLogObj;//temporary store call log object for casting        PhoneCallLog clTemp;
    
            try {            int numOfCall = pl.numberOfCalls(folder);            for (int i = numOfCall - 1; i >= 0; i--) {                callLogObj = pl.callAt(i, folder);                if (callLogObj instanceof PhoneCallLog) {                    clTemp = (PhoneCallLog) callLogObj;                    if (clTemp.getDate().getTime() == clTime) {//compare time                        //#ifndef OS5.0                        if (folder == PhoneLogs.FOLDER_MISSED_CALLS) {                            clTemp.setType(PhoneCallLog.TYPE_MISSED_CALL_OPENED);                        }                        //#endif                        pl.deleteCall(i, folder);//delete                        return true;                    }                }            }        } catch (Exception e) {            ExceptionLogger.logEvent(e, "Delete a call log exception.");        }
    
            return false;    }
    
  • UTL_RAW.cast_to_number does not work in oracle12c

    Hello

    I'm using the UTL_RAW package cast_to_number utility, but getting errors as follows:

    command:

    UTL_RAW.cast_to_number (RAWTOHEX ('11AB0'));

    Error:

    ORA-06502: PL/SQL: digital error or value

    ORA-06512: at "SYS." UTL_RAW", line 388

    UTL_RAW. CAST_TO_NUMBER extracts raw binary data entered and she throws in a number.

    RAWTOHEX performs a cast of binary data into hexadecimal representation in varchar2.

    So your comments to UTL_RAW. CAST_TO_NUMBER does not match the required type.

  • My built-in memory SD card reader does not work on Windows 8

    I installed Windows 8 on my new Acer AspireOne AO756 and the SD card reader does not work. I looked for some drivers and drivers Acer only give x 64 for Windows 8, but I only have x 32.  Everyone knows about this problem, and if so how to solve? Thank you

    Hello

    I understand that the casting of card reader does not work on your laptop.

    1. you get any error message?
    2 have you tried with different memory cards?

    I suggest you follow the steps mentioned below and check if it helps.

    Method 1:

    You can try to run the hardware and devices Troubleshooter and check if it helps.
    a. press the Windows key + R, type Control Panel.
    b. type troubleshooting in the search bar, click Troubleshooting.
    c. click on hardware and sound, click hardware and devices.
    d. follow the steps in the wizard to run the troubleshooter.

    Method 2:

    You can download the driver for the reader from the link below and install it in compatibility mode.

    http://Acer.supportscentre.com/driver-of-Acer-Aspire-one-ao756-Windows-7-32-bit.html

    You can follow the link given below to install the driver in compatibility mode.

    What is program compatibility?

    http://Windows.Microsoft.com/en-us/Windows-8/what-program-compatibility

    Make the programs more compatible with this version of Windows

    http://Windows.Microsoft.com/en-us/Windows-8/older-programs-compatible-version-Windows

    Hope the helps of information. If you have questions related to Windows, please do not hesitate to post, we will be happy to help.

  • Error in plugin Maven OJMake, the package does not exist

    Hi all

    I'm trying to compile the application oracle fusion middleware that is projects ViewController and models inside. Using Jdeveloper compile or deploy it works perfectly. But the company is moving all Maven projects, so I created project and application poms, added all the dependencies. Hitting the compile with the commented ojmake plugin works fine, but with the ojmake plugin model project compilation failed.

    Model has a dependency called sxreports which is a jar created by our company and stored in the repository maven local businesses, solved dependence and the appropriate version of the artifact is downloaded.

    sxreports.jar (packages)

    -report

    -datasource

    -etc.

    Out of Maven generates this kind of errors:

    [INFO] Error (80,25): package report.datasource does not exist

    [INFO] Error (81.41): package report.datasource.ReestrSoobFNSDS does not exist

    [INFO] Error (220,22): can't find symbol;  symbol: class IzveshenieOPostonovkeVOcheredDS;  location: sx.model.AppModuleImpl of the class

    There are many of them, all about this artifact.

    I noticed this artifact is not listed in the classpath, would he be here?

    [INFO] C:\Oracle\Middleware\Oracle_Home\oracle_common\jdk\bin\javac

    [INFO] - source 1.7

    [INFO] - target 1.7

    [INFO] - verbose

    [INFO] - encoding UTF-8

    [INFO] - bootclasspath

    [INFO] C:\Oracle\Middleware\Oracle_Home\oracle_common\jdk\jre\lib\resources.jar;

    [INFO] C:\Oracle\Middleware\Oracle_Home\oracle_common\jdk\jre\lib\rt.jar;

    [INFO] C:\Oracle\Middleware\Oracle_Home\oracle_common\jdk\jre\lib\jsse.jar;

    [INFO] C:\Oracle\Middleware\Oracle_Home\oracle_common\jdk\jre\lib\jce.jar;

    [INFO] C:\Oracle\Middleware\Oracle_Home\oracle_common\jdk\jre\lib\charsets.jar;

    [INFO] C:\Oracle\Middleware\Oracle_Home\oracle_common\jdk\jre\lib\jfr.jar

    [INFO] - sourcepath

    [INFO] C:\git\SXDOCS\Model\src

    [INFO] d

    [INFO] C:\git\SXDOCS\Model\classes

    [INFO] - classpath

    [INFO] C:\git\SXDOCS\. ADF;

    [INFO] C:\git\SXDOCS\Model\classes;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-share-support\12.1.2-0-0\adf-share-support-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-share-ca\12.1.2-0-0\adf-share-CA-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-share-base\12.1.2-0-0\adf-share-base-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adflogginghandler\12.1.2-0-0\adflogginghandler-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adfsharembean\12.1.2-0-0\adfsharembean-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jmxframework\12.1.2-0-0\jmxframework-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jmxspi\12.1.2-0-0\jmxspi-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\identitystore\12.1.2-0-0\identitystore-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adfm\12.1.2-0-0\adfm-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\bc4j-mbeans\12.1.2-0-0\bc4j-MBeans-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\groovy-all\12.1.2-0-0\groovy-all-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\xmlparserv2\12.1.2-0-0\xmlparserv2-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\db-ca\12.1.2-0-0\DB-CA-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jdev-cm\12.1.2-0-0\jdev-cm-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\ojmisc\12.1.2-0-0\ojmisc-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\commons-el\12.1.2-0-0\commons-El-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jsp-El-api\12.1.2-0-0\jsp-El-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\oracle-el\12.1.2-0-0\oracle-El-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\resourcebundle\12.1.2-0-0\resourcebundle-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\sun\mail\javax.mail\1.4.4\javax.mail-1.4.4.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\activation\activation\1.1\activation-1.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adftransactionsdt\12.1.2-0-0\adftransactionsdt-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-DT-at-rt\12.1.2-0-0\adf-DT-at-RT-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adfdt_common\12.1.2-0-0\adfdt_common-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adflibrary\12.1.2-0-0\adflibrary-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-share-security\12.1.2-0-0\adf-share-security-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-controller-security\12.1.2-0-0\adf-controller-security-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\mdsrt\12.1.2-0-0\mdsrt-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\oramds\12.1.2-0-0\oramds-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\servlet\2.1.0.0_3-0\servlet-2.1.0.0_3-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\jsp\3.0.0.0_2-2\jsp-3.0.0.0_2-2.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\ojdbc6dms\12.1.2-0-0\ojdbc6dms-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\commons-cli\12.1.2-0-0\commons-CLI-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\share\12.1.2-0-0\share-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\xmlef\12.1.2-0-0\xmlef-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\dms\12.1.2-0-0\dms-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\xml\12.1.2-0-0\xml-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n\12.1.2-0-0\orai18n-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-mapping\12.1.2-0-0\orai18n-mapping-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-utility\12.1.2-0-0\orai18n-utility-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-collation\12.1.2-0-0\orai18n-collation-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-translation\12.1.2-0-0\orai18n-translation-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-net\12.1.2-0-0\orai18n-net-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-servlet\12.1.2-0-0\orai18n-servlet-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-lcsd\12.1.2-0-0\orai18n-LCSD-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-tools\12.1.2-0-0\orai18n-tools-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\tangosol\coherence\12.1.2.0\coherence-12.1.2.0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\ucp\12.1.2-0-0\ucp-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\ojdl\12.1.2-0-0\ojdl-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\javatools-nodeps\12.1.2-0-0\javatools-nodeps-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\management\j2ee\1.1.0.0\j2ee-1.1.0.0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\eclipselink\12.1.2-0-0\eclipselink-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\ldapjclnt11\12.1.2-0-0\ldapjclnt11-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-api\12.1.2-0-0\jps-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-common\12.1.2-0-0\jps-common-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-ee\12.1.2-0-0\jps-EE-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-internal\12.1.2-0-0\jps-internal-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-unsupported-api\12.1.2-0-0\jps-unsupported-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-manifest\12.1.2-0-0\jps-manifest-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-audit\12.1.2-0-0\jps-audit-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-AZ-api\12.1.2-0-0\jps-AZ-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-AZ-common\12.1.2-0-0\jps-AZ-common-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-AZ-management\12.1.2-0-0\jps-AZ-management-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-AZ-rt\12.1.2-0-0\jps-AZ-RT-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-AZ-pdplg\12.1.2-0-0\jps-AZ-pdplg-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-AZ-sspi\12.1.2-0-0\jps-AZ-SSPI-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-pep\12.1.2-0-0\jps-PEP-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-platform\12.1.2-0-0\jps-platform-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-se\12.1.2-0-0\jps-se-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\opss-tools\12.1.2-0-0\opss-tools-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-upgrade\12.1.2-0-0\jps-upgrade-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\security-api\12.1.2-0-0\security-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\opss-component-security-info\12.1.2-0-0\opss-component-security-info-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jps-SIDM-api\12.1.2-0-0\jps-SIDM-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_saml\12.1.2-0-0\osdt_saml-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_saml2\12.1.2-0-0\osdt_saml2-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_wss\12.1.2-0-0\osdt_wss-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_restsec\12.1.2-0-0\osdt_restsec-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\identityutils\12.1.2-0-0\identityutils-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\arisId-stack-ovd\12.1.2-0-0\arisId-stack-OVD-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\identitydirectory\12.1.2-0-0\identitydirectory-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\igf_mbeans\12.1.2-0-0\igf_mbeans-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\ovd\12.1.2-0-0\ovd-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\config\12.1.2-0-0\Config-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\plugins\12.1.2-0-0\plugins-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\IdentityContext\12.1.2-0-0\IdentityContext-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\xmlparserv2_sans_jaxp_services\12.1.2-0-0\xmlparserv2_sans_jaxp_services-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\dom4j\1.6.1\dom4j-1.6.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\orai18n-service\12.1.2-0-0\orai18n-service-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\apache\neethi\neethi\2.0.4\neethi-2.0.4.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\apache\ws\commons\axiom\axiom-api\1.2.7\axiom-API-1.2.7.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\apache\geronimo\specs\geronimo-activation_1.1_spec\1.0.1\geronimo-activation_1.1_spec-1.0.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\apache\geronimo\specs\geronimo-javamail_1.4_spec\1.2\geronimo-javamail_1.4_spec-1.2.jar;

    [INFO] C:\Users\btsyrenov\.m2\xml-apis\xml-apis\1.3.04\xml-APIs-1.3.04.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\apache\geronimo\specs\geronimo-Stax-api_1.0_spec\1.0.1\geronimo-Stax-api_1.0_spec-1.0.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\apache\ws\commons\axiom\axiom-impl\1.2.7\axiom-impl-1.2.7.jar;

    [INFO] C:\Users\btsyrenov\.m2\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\codehaus\woodstox\wstx-asl\3.2.4\wstx-ASL-3.2.4.jar;

    [INFO] C:\Users\btsyrenov\.m2\stax\stax-api\1.0.1\stax-API-1.0.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\jaxen\jaxen\1.1.6\jaxen-1.1.6.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\openliberty\openaz\azapi\1.1\azapi-1.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\openliberty\arisIdBeans\1.1\arisIdBeans-1.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\org\openliberty\arisId\1.1\arisId-1.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\asn1c\12.1.2-0-0\asn1c-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\jacc-spi\12.1.2-0-0\jacc-SPI-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\oraclepki\12.1.2-0-0\oraclepki-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_core\12.1.2-0-0\osdt_core-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_cert\12.1.2-0-0\osdt_cert-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_xmlsec\12.1.2-0-0\osdt_xmlsec-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\osdt_ws_sx\12.1.2-0-0\osdt_ws_sx-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\fmw_audit\12.1.2-0-0\fmw_audit-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\security\jacc\1.1.0.0_1-1\jacc-1.1.0.0_1-1.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\trinidad-api\12.1.2-0-0\trinidad-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\trinidad-impl\12.1.2-0-0\trinidad-impl-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-richclient-API-11\12.1.2-0-0\adf-richclient-API-11-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf\adf-richclient-impl-11\12.1.2-0-0\adf-richclient-impl-11-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\sun\faces\jsf-api\2.1.7-01\jsf-API-2.1.7-01.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\sun\faces\jsf-impl\2.1.7-01\jsf-impl-2.1.7-01.jar;

    [INFO] C:\Users\btsyrenov\.m2\glassfish\el\1.1.0.0_2-2\el-1.1.0.0_2-2.jar;

    [INFO] C:\Users\btsyrenov\.m2\glassfish\jstl\1.2.2.0\jstl-1.2.2.0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\resourcebundle-resolver\12.1.2-0-0\resourcebundle-resolver-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\resourcebundle-API-rt\12.1.2-0-0\resourcebundle-API-RT-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf-share-ca\12.1.2-0-0\adf-share-CA-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\xdk\12.1.2-0-0\xdk-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\el\12.1.2-0-0\el-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\javatools-JNDI-local\12.1.2-0-0\javatools-JNDI-local-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\el-for-uix2\12.1.2-0-0\el-for-uix2-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf-share-support\12.1.2-0-0\adf-share-support-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\oracle-JRF-coherence\12.1.2-0-0\oracle-JRF-coherence-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\ant\12.1.2-0-0\ant-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\oracle-JRF-dms\12.1.2-0-0\oracle-JRF-DMS-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\oracle-JRF-adminserver\12.1.2-0-0\oracle-JRF-AdminServer-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\xmlef\12.1.2-0-0\xmlef-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\balishare\12.1.2-0-0\balishare-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\odl\12.1.2-0-0\odl-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jps\12.1.2-0-0\jps-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\osdt\12.1.2-0-0\osdt-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\ldap\12.1.2-0-0\ldap-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\commons-cli\12.1.2-0-0\commons-CLI-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\iau\12.1.2-0-0\iau-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\idm\12.1.2-0-0\idm-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\pki\12.1.2-0-0\pki-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jrf-api\12.1.2-0-0\jrf-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf-share-security\12.1.2-0-0\adf-share-security-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\mds\12.1.2-0-0\mds-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\xdb\12.1.2-0-0\xdb-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\ucp\12.1.2-0-0\ucp-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jdbc\12.1.2-0-0\jdbc-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\mds-protocol\12.1.2-0-0\mds-Protocol-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jaxb\12.1.2-0-0\jaxb-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jmx\12.1.2-0-0\jmx-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jee-api\12.1.2-0-0\jee-API-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\enterprise\deploy\1.3\deploy-1.3.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\interceptor\1.2\interceptor-1.2.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\resource\1.6.1\resource-1.6.1.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\transaction\2.1.0.0_1-1\transaction-2.1.0.0_1-1.jar;

    [INFO] C:\Users\btsyrenov\.m2\javax\xml\registry\1.1.0.0_1-0-4\registry-1.1.0.0_1-0-4.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\javatools-nodeps\12.1.2-0-0\javatools-nodeps-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf-share-base\12.1.2-0-0\adf-share-base-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\adf-logging-handler\12.1.2-0-0\adf-logging-handler-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\oracle-JRF-logging\12.1.2-0-0\oracle-JRF-logging-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\glassfish\12.1.2-0-0\glassfish-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jsp\12.1.2-0-0\jsp-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\servlet-runtime\12.1.2-0-0\servlet-runtime-12.1.2-0-0.jar;

    [INFO] C:\Users\btsyrenov\.m2\com\oracle\external\jsf-RI-21\12.1.2-0-0\jsf-RI-21-12.1.2-0-0.jar

    [INFO] g

    [INFO] - Xlint: all the

    [INFO] - Xlint:-casting

    [INFO] - Xlint:-classfile

    [INFO] - Xlint:-dep - ann

    [INFO] - Xlint:-vacuum

    [INFO] - Xlint:-fallthrough

    [INFO] - Xlint:-path

    [INFO] - Xlint:-treatment

    [INFO] - Xlint:-rawtypes

    [INFO] - Xlint:-series

    [INFO] - Xlint:-disabled

    The artifact is in place but ojmake is unable to solve somehow, ideas on how to fix this or what could be the problem would be appreciated

    -Jdeveloper version 12.1.2

    -Windows 7, 64-bit

    -All Oracle objects are installed for the repo company maven and available

    -Maven included with jdeveloper version 3.0.4

    I guess that you have correctly configured the maven ojmake plugin in your pom.

    Ojmake plugin uses the jpr to resolve dependencies. If you need to make sure that the pot is listed under project libraries and classpath.

  • Guests of dashboard does not not for some table

    Hello world

    I'm on OBIEE, the latest version and I was faced with a problem with the guests of dashboard.

    The schema is built progressively to the RPD. It's all in one area.

    I created a quick dashboard for the "Global ID" and the "Time range" using between operator.

    Guests of dashboard has worked for first two analysis I built. However, I have added a new table to the diagram and apply the same guests of dashboard, but it does not work.

    However, if the use of filters for the dash prompt and hardcode the Global guest and time range, I get the result.

    I still don't understand as to why the guests of dash wouldn't work for this analysis.

    I was able to use a variable presentation for the GlobalID from the dash prompt, and that seemed to work. But it does NOT for the time range.

    Appreciate any understanding to solve the problem.

    Hello

    I think that it doesn't work because of the type of data that you use in the time column.

    Try the following:

    1. create a calculated column in the concatenation of the year and the month of the RPD

    Example: mount (trim (cast ("YEAR" as char)): trim (cast ("MONTH_ID" as char)) under the number)

    change the fields of the YEAR and MONTH_ID to their respective

    2. replace your prompt 'slot' for this calculated column

    3 - in the analysis replace this column in the filter applied to the parameterization.

    As we are now working with the number data type, we can do between.

    Hope this helps

    Felipe Idalgo

  • Tabs Panel: How can I designate a default tab? The site with the tab wanted to selected download does not work for me.

    I created a tab panel and applied some styles to tabs. (Drop shadow and change the stacking order so that each tab casts a shadow on that below.) Now everytime the page loads, it will default to the lower tab. The only suggestion that I've seen is to save and load the site with the desired tab is selected and 'active'. This does not seem to solve the problem.

    Hmmm, have you looked into this widget from MuseGrid? It looks like roughly what it takes for this?

    News a new star | Adobe Muse Widget | museGrid.com

  • E520 does not support wifi after reinstalling windows 7

    Hello

    After that I reinstalled windows 7 I can't recover pilots (cast go F11 as mention in many support sites) and factory settings. Also, I can't download Wifi (wireless lan driver). It shows that it cannot be performed on this computer because it does not support this operating system or has any device marries. I have downloaded the driver support Lan and it works, but its another thing with wifi. Genius Driver can't find or the other. Also tried using rescue and restoration, but there is no back up even still make a LENOVO_RECOVERY partition. So I need to know I'm doing wrong, have you installed OS wrong (even do I tried two different configurations) or I just do something wrong, so I'm trying to restore fatory settings or I just f... up really good...

    Hi ignotas525 and welcome to the community.

    Is this a clean install or have you installed 7 of restore disks?

    Install and run TVSU , and see what it comes up with.  You will need MS Net Framework 3.5 SP1 for TVSU to run.

    Kind regards

    Dave

  • OBIEE - SQL Expression filter does not at all - shows SQL but no result

    IM at my wits end for this

    I have a report where I use a filter with a simple SQL expression
    cast ( timestampadd(SQL_TSI_YEAR, -1, Cast(Cast(DATE '@{pv_as_of_date}{2013-04-01}' AS CHAR) AS TIMESTAMP) ) as DATE)
    If an end user can enter a date and it is passed into the filter through a variable

    pv_as_of_date

    This is set by default to 2013-04-01

    I want to subtract 1 year to make the final result

    2012-04-01

    When I run the report I see two problems

    (1) for displaying the filter at the bottom, I see the complete SQL code. This should not show that the returned date? In this case the filter should not show 2012-04-01?

    (2) the filter does not yet that is my biggest problem

    I tested the code above in a column and I KNOW the date is returned as expected

    But when I use the same SQL code in the filter then it does not work

    Am I missing some special button somewhere to allow SQL expressions?

    Any help hugely appreciated

    I don't see anything wrong in the expression, but when you might have questions

    Criteria over time. "' Academic year Desc" column-> filter-> Advanced-> convert it to SQL
    and use this expression.

Maybe you are looking for