Error : 'cannot find symbol getText()'

please check my java coding. when I compile it, the error: 'cannot find symbol
getText() ' is appear. What wrong with this coding.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class buatAction
public static void main(String[] args)
JFrame f= new JFrame("Contoh Action");
f.setSize(150,200);
f.setLocation(200,200);
f.addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent we)
System.exit(0);
//setkan button
final JPanel OK = new JPanel();
JButton buttonOK = new JButton("OK");
OK.add(buttonOK);
final JPanel txt = new JPanel();
JTextField inputText = new JTextField(15);
inputText.setFont(new Font("Serif", Font.PLAIN, 12));
txt.add(inputText);
Container content = f.getContentPane( );
content.setLayout(new GridLayout(1,1));
content.add(txt);
content.add(OK);
buttonOK.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent ae)
String ayat = txt.getText().getActionCommand();
System.out.println(ayat);
f.setVisible(true);
}

please check my java coding. when I compile it, the error: 'cannot find symbol
getText() ' is appear. What wrong with this coding.
final JPanel txt = new JPanel();...
buttonOK.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent ae)
String ayat = txt.getText().getActionCommand();
System.out.println(ayat);
});Final variable 'txt' is a JPanel. JPanels don't have a 'getText()' method; hence
the compiler diagnostics message.
kind regards,
Jos
ps. better stick your code between [code] ... [/code] tags for readability reasons.

Similar Messages

  • Compiler error: "cannot find symbol" - constructor

    Dear all,
    I keep getting the compiler error "cannot find symbol" - constructor AWTEvent() for the following class. It's supposed to extend AWTEvent to give me my own event to be fired. What could be wrong?
    import java.awt.*;
    import java.awt.event.*;
    public class MyButtonEvent extends AWTEvent
         public MyButtonEvent()
    }Thanks a lot!
    N

    When you do this
    public MyButtonEvent()
    }you are implicitly calling the super class constructor with no parameters
    That is:
    AWTEvent();
    you can think of it as
    public MyButtonEvent()
         AWTEvent(); // <-- automatically generated for you
         //the rest of your stuff
    }the problem is that AWTEvent has no such constructor, so you need to explicitly put another constructor in your constructor as the first statement. This other constructor has to be one that exists in AWTEvent.

  • Error: cannot find symbol implements..

    I have an interface and I'm trying to implement.
    package data_structures;
    public interface ListADT<E> extends Iterable<E> {
    //Method Signatures
    and
    package data_structures;
    public class LinkedListDS<E> implements ListADT<E> {
    //Code
    And when I try to compile the class I get
    LinkedListDS.java:3 error: cannot find symbol
    public class LinkedListDS<E> implements ListADT<E> {
    ____________________________________^
    symbol: class ListADT
    And I'm not really sure what I'm doing wrong here or what exactly Java wants me to do to correct this error.

    What are you using to compile?  If the command line, and not an IDE which will do this for you, then compile the interface, first.

  • Error: cannot find symbol method Text

    Hi
    I want to make an index for txt files by using Lucene, it got an error: cannot find symbol method Text. what is it about? Does it mean the Text is not in Field?
    thank you v much
    pls look into my code:
    package TestLucene;
    import java.io.File;
    import java.io.FileReader;
    import java.io.Reader;
    import java.util.Date;
    import org.apache.lucene.analysis.Analyzer;
    import org.apache.lucene.analysis.standard.StandardAnalyzer;
    import org.apache.lucene.document.Document;
    import org.apache.lucene.document.Field;
    import org.apache.lucene.index.IndexWriter;
    import org.apache.lucene.document.Fieldable;
    import java.io.Serializable;
    * This class demonstrate the process of creating index with Lucene
    * for text files
    public class Lucene {
         public static void main(String[] args) throws Exception{
              //indexDir is the directory that hosts Lucene's index files
            File   indexDir = new File("D:\\luceneIndex");
            //dataDir is the directory that hosts the text files that to be indexed
            File   dataDir  = new File("D:\\luceneData");
            Analyzer luceneAnalyzer = new StandardAnalyzer();
            File[] dataFiles  = dataDir.listFiles();
            IndexWriter indexWriter = new IndexWriter(indexDir,luceneAnalyzer,true);
            long startTime = new Date().getTime();
            for(int i = 0; i < dataFiles.length; i++){
                 if(dataFiles.isFile() && dataFiles[i].getName().endsWith(".txt")){
              System.out.println("Indexing file " + dataFiles[i].getCanonicalPath());
              Document document = new Document();
              Reader txtReader = new FileReader(dataFiles[i]);
              document.add(Field.Text("path",dataFiles[i].getCanonicalPath()));
              document.add(Field.Text("contents",txtReader));
              indexWriter.addDocument(document);
    indexWriter.optimize();
    indexWriter.close();
    long endTime = new Date().getTime();
    System.out.println("It takes " + (endTime - startTime)
    + " milliseconds to create index for the files in directory "
              + dataDir.getPath());

    Hal-.- wrote:
    I downloaded Lucene from its homepage, I have tried Lucene 2.3.0 and Lucene 2.2.0, but same errors occurs which is cannot find symbol method Text.
    I checked class Field under Lucene, it doesn't have Text function. Well there you go. You can't call methods that don't exist.
    What should I do to add two Fields "path" & "contents" into Document?It seems very likely that the object that represents an indexed document, has some way to express the concepts of "path" and "contents". You should probably just read the docs some more.
    But other than that I have no idea. Ask on a Lucene forum.

  • Using currency format to round results (error cannot find symbol)

    Hi i have a small program that converts currency and want to round the numbers up to 2 d.p i have chosen to use the command
    numberFormat(txtOutput, "0.00");
    But i cannot figure out where to put it in my program as it just returns errors like cannot find symbol. Could anyone please help?
    this is the program that it is going to go into
    double x;
    double y;
    double z;
    x = Integer.parseInt(txtInput.getText());
    y = 0.748279;
    z = Double.parseDouble(txtExchange.getText());
    if (z > 0)
    txtOutput.setText('?' + Double.toString( x * z ));
    else
    txtOutput.setText('?' + Double.toString( x * y ));

    I now have this but it is still returning the error illegal start of expression for the line "import java.text.DecimalFormat;". And i have checked the braces and they appear correct
    import java.text.DecimalFormat;
            numberFormat(txtOutput, "0.00");
            DecimalFormat df = new DecimalFormat("0.00");
            double x = Integer.parseInt(txtInput.getText());
            double y = 0.748279;
            double z = Double.parseDouble(txtExchange.getText());
            if (z > 0){
                txtOutput.setText('?' + df.format( x * z ));
            } else {
                txtOutput.setText('?' + df.format( x * y ));
            }

  • Java Error : cannot find symbol , symbol : class (jdk 1.6.0)

    Dear All,
    Please help me.
    I am running javac from a .bat file and i set the classpath in the bat file as follows.
    echo on
    :start
    set classpath = "C:\Program Files\Java\jdk1.6.0\bin;"
    set classpath = "C:\Program Files\Java\jdk1.6.0\jre\..\lib\tools.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\i18n.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0\jre\classes;C:\Program Files\Java\jdk1.6.0\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\ext\ldapsec.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\ext\mysql-connector-java-5.0.0-beta-bin.jar;C:\Program Files\Java\jdk1.6.0\jre\lib\ext\sunjce_provider.jar; C:\Program Files\Java\jdk1.6.0\ideset\system;C:\Program Files\Java\jdk1.6.0\ideset\system;C:\Program Files\Java\jdk1.6.0\studio\system;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\j2ee-1.3.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\jaas-1.0.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\autoload\activation.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\jms-1.0.2b.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\jta-spec1_0_1.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\autoload\mail.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\AbsoluteLayout.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\sql.jar;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\rowset.jar;C:\Program Files\Java\jdk1.6.0\studio\lib\ext\jdbc20x.zip;C:\Program Files\Java\jdk1.6.0\studio\modules\ext\servlet-2.3.jar;C:\Program Files\Java\jdk1.6.0\studio\beans\TimerBean.jar;c:\Program Files\Java\jdk1.6.0\ideset\tomcat401_base;C:\sms\com\;"
    cd C:\sms
    javac mainP.java
    pause
    i have few class files which are inherited to the main program using ' import com.Connection; '
    i am getting errors like
    mainP.java:482: cannot find symbol
    symbol : class Connection
    location: class mainP
    Connection connection = new Connection(ipAddress, port);
    I think it is because of some classpath error.
    please advice me.......
    Viju

    Actually, you have NO CLUE what he's trying to doActually he said what he is trying to do in his posting. It's no mystery. But that's all the information that's available. If you know something that isn't posted here why not say so?
    Your reply was a snide, rude, "You're stupid for doing it that way" answerMy reply was neither snide nor rude and implied none of what you impute to it. It was a proper and constructive suggestion. You are entitled to disagree with it, but that doesn't justify this immoderate outburst.
    Bottom line is, you chose to be nastyBottom line is you're just making this up. You are imputing motives to me without evidence. Don't do that.
    You are the type of person that makes searching forums and posting questions for assistance a near waste of time.I doubt that you'll find many regulars here that would agree with that assertion. When you have made over 16,000 posts here over ten years as I have, come back and we'll discuss it some more.
    Go back to grade school and ...I suggest you try it yourself. You're not adding anything except noise to the discussion. Try curbing your temper, and while you're at it have a good look at the Code of Conduct for these forums. You're verging on personal abuse here.
    And, additionally, I've used ANT in the past. Batch files are FAR AND AWAY easier to set up.In your opinion. I disagree entirely, and I have eleven years' experience with Java to back it up.
    As for CLASSPATH, I haven't done anything about setting it beyond installing the JDK since about 1999, and it has a dot in it as we speak.

  • Error: Cannot find symbol: Variable Name

    Hi Guys,
    I'm having some trouble with a piece of code. The error that I'm getting is:
    program.java:17: cannot find symbol
    symbol : variable name
    location: class program
    name.CTI(names[0].charAt(0));
    ^
    My Code is shown here:
    import java.io.*;
    import java.lang.*;
    class program{
         public static void main(String[] args){
              String names [] = {"brian", "stu", "mouse"};
              program name = new program ();
              name.sortArrayStr(names);
              //name.CTI(names[0].charAt(0));
         public void sortArrayStr( String[] names ){
              name.CTI(names[0].charAt(0));
         public int CTI ( char letter ){
              char c = letter;
            int k = (int) c;
            System.out.println("ASCII  = "  + k + ".");
              return k;
    }What I'm trying to do is get the name.CTI method caled from within sortArrayStr. When i call name.CTI from main it works fine, (commented part) but when i try from sortArrayStr I get this problem.
    Anyone have any ideas?
    Many Thanks

    Variable name is a local variable defined in method main, so it can not be referenced by writing name in another method like sortArrayStr.
    The good news is, if you want to call CTI from sortArrayStr, just do it:
    public void sortArrayStr( String[] names ){
        CTI(names[0].charAt(0));
    }

  • Compile error : Cannot find symbol

    hello, i'm having trouble compiling a bean that resorts to another bean's public operation. Im trying to make a shopping cart which takes individual item orders such as item name and quantity and place them within an array list called cart in another bean. The errors i get when im trying to compile is:
    cannot find symbol
    symbol : class OrderItem
    location: class beans.WidgetOrder
               public void setItem(OrderItem o){cart.add(o);}I've looked at other threads and heard that quicktime can intervein with the classpath, so i deleted that, and also checked that CLASSPATH is set to C:\Program Files\Java\jre1.6.0_04\lib\ext\QTJava which it is, but the javabeans are set in the same path so i don't know what difference that is.

    Are you using an IDE?
    Is the OrderItem class in the beans package?
    You should have a path structure like some/path/beans where the WidgetOrder.class file will reside inside the beans directory. If OrderItem is in the beans package, then when you compile you should use something like "javac -cp some/path WidgetOrder.java"

  • Client error, cannot find symbol

    Hello, I just finished my project and my client keeps giving me this error, I do not know what is going on. It doesn't look like I did anything really wrong. Any help is appreciated!
    HomeClient.java:14: cannot find symbol
    symbol  : constructor Home(int,int,int)
    location: class Home
         Home home1 = new Home( 1, 123, 1);
    Class
    import java.io.Serializable;
    public class Home implements Serializable
         private int rooms;
         private int squareFootage;
         private boolean basement;
         public Home ( int startRooms,
              int startSquareFootage,
              boolean startBasement )
              rooms = startRooms;
              squareFootage = startSquareFootage;
              basement = startBasement;
         public String toString()
              return "Rooms: " + rooms
              + " Square Footage: " +squareFootage
              + " Basement: " +basement;
    Client Program
    import java.io.FileOutputStream;
    import java.io.ObjectOutputStream;
    import java.io.FileInputStream;
    import java.io.ObjectInputStream;
    import java.io.FileNotFoundException;
    import java.io.EOFException;
    import java.io.IOException;
    public class HomeClient
         public static void main( String [] args )
         Home home1 = new Home( 1, 123, 1);
         try
              FileOutputStream fos = new FileOutputStream
                             ( "objects", false);
              ObjectOutputStream oos = new ObjectOutputStream( fos );
              oos.writeObject( home1 );
              oos.close();
         catch ( FileNotFoundException fnfe ) {
              System.out.println( "Unable to write to objects" );
         catch ( IOException ioe ) {
              ioe.printStackTrace();
    }

    ok, not really getting this, same problem. Any advice of what is wrong as far as the methods. I'm really trying to get this!
    import java.io.Serializable;
    public class Home implements Serializable
         private int rooms;
         private int squareFootage;
         private boolean basement;
         public Home ( int startRooms,
                               int startSquareFootage,
                               boolean startBasement )
              rooms = startRooms;
              squareFootage = startSquareFootage;
              basement = startBasement;
         public String toString()
              return "Rooms: " + rooms
                         + " Square Footage: " +squareFootage
                         + " Basement: " +basement;
         public int getRooms()
              return rooms;
         public int getSquareFootage()
              return squareFootage;
         public boolean getBasement()
              return basement;
         public void setRooms( int newRooms )
              rooms = newRooms;
         public void setSquareFootage( int newSquareFootage )
              squareFootage = newSquareFootage;
         public void setBasement( boolean newBasement )
              basement = newBasement;
    }

  • Error: cannot find symbol

    Hi all,
    I have this piece of code inside try/catch block:
    for (int i=0; i<nodeList.getLength(); i++)
                     Node node = nodeList.item(i);
                        NamedNodeMap attributes = node.getAttributes();
                     Node namedItem = attributes.getNamedItem("event_ID");
                     if (node.getNodeName().equals("events") && namedItem != null)
                        nameValueMap.put("event_ID", namedItem.getNodeValue());                 
                     if (!node.getNodeName().equals("events") && !node.getNodeName().equals("event"))
                        nameValueMap.put(node.getNodeName(), node.getTextContent());
                    } I receive the following error:
    home/LogParserDOM.java:281: cannot find symbol
    symbol  : method getTextContent()
    location: interface org.w3c.dom.Node
                        nameValueMap.put(node.getNodeName(), node.getTextContent()); Does anybody have any idea why am I receiving this error? Why all other methods that I'm using from interface org.w3c.dom.Node like: getAttributes(), getNodeValue(), getNodeName(), ... can be found and the error happens at: getTextContent()?
    Any help is greatly appreciated.

    Check the API.
    org.w3c.dom Interface Node:
    String getTextContent() throws DOMExceptionThis method is not in JDK 1.4.2 API docs, it looks like it was added 1.5. May be you are using 1.4.2?

  • Error:Cannot find symbol Symbol Constructor

    Anyone who can help..
    I need to write a program that has two camera's and define a camera class so it prints out the total of the camera's at the end. I keep getting different errors it seems like I fix one and another one pops up, but this one has me confused. It is the following program:
    public class Program2
              public static void main (String [] args)
                   Camera home = new Camera(10);
                   Camera work = new Camera(30);
                   home.takePic();
                   home.takePic();
                   home.takePic();
                   home.erasePic();
                   home.printNum();
                   home.takePic();
                   home.takePic();
                   home.eraseAll();
                   home.printNum();
                   work.takePic();
                   work.takePic();
                   work.printNum();
         class Camera
         public Camera ();
              private int pictures;
                   pictures = 0;
              public void takePic()
                   pictures++;
              public void erasePic()
                   pictures--;
              public void eraseAll()
                   pictures = 0;
              public void printNum()
                   System.out.println("This camera has " + pictures +
                        " on it.");
    and I get this error:
    Program2.java:5: cannot find symbol
    symbol : constructor Camera(int)
    location: class Camera
                   Camera home = new Camera(10);
                   ^
    Program2.java:6: cannot find symbol
    symbol : constructor Camera(int)
    location: class Camera
                   Camera work = new Camera(30);
                   ^
    Anyone know what is going on? I am so confused any help would be absolutely wonderful!
    Thanks,
    K

    Program2.java:5: cannot find symbol
    symbol : constructor Camera(int)
    location: class Camera
    Camera home = new Camera(10);
    It says, when it tries to execute the statement
    Camera home = new Camera(10);
    It could not find the Camera(int) constructor, since you have provided such constructor in your program.
    Just add the following constructor in your program, and it should work.
    public Camera (int pictures);
    this.pictures = pictures;
    Nice to meet you.

  • Compile error "cannot find symbol" THE ANSWER

    people who want to know the answer to this question follow these steps:
    When you install QuickTime 7 it messes up the Classpath, which you can find under: Start/Settings/Control Panel. Double click System. Click the Advanced tab and then the Environment Variables button.
    I suggest that you install QuickTime 6.5 and then check that the Java
    functions are working correctly. Then go to the Classpath setting for the
    JDK, and insert a ;(semi colon) at the start of the
    path.
    I FEEL LIKE DANCING

    Want to know something Disco Duck? I knew the answer all along but didn't want to help you given your crosspost and the attitude you displayed after being called on it.

  • "cannot find symbol class studentList" error

    Hi I get this error
    "cannot find symbol class studentList", but this class is at the same file and also it is in the same folder. so what's wrong .. and I checked the spelling it's the same.
    I should create an object named myList of type studentList
    and second, I call method menu() and pass it myList as actual parameter.
    so I called the function menu which is should be in the main too
    like this
    myList.menu();
    and menu method accepts as parameter an object of type studentList. and display the menu for the user to choose..
    here is part my program:
    public class ListTest
    {  public void menu(Student L) // accepts parameter
                   System.out.println("");
                System.out.println("Choose a number between 1 to 4");
                      System.out.println("1-Print Info of A Student ");          
                System.out.println("2-Print Info of All Students ");                          
               System.out.println("3-Display grade of A Specific student");                           
                System.out.println("4-Exit");
                System.out.println("");        
              int choice = Stdin.readInteger();
              while (choice != 5)
             switch (choice) {
                 case 1:
             L.PrintAStudent(int L);
             break;
              case 2:
            L.PrintAll();
            break;     
              case 3:
              L.DisplayGPA();
              break;
                 case 3:
                System.exit(0);
               break;
               default:
               System.out.println("wrong Number");
              System.out.println("Enter a number between 1 to 4 ");
               System.out.println("Enter 4 to Exit");
                break;
                System.out.println("");
                System.out.println("Choose a number between 1 to 4");
                System.out.println("1-Print Info of A Student ");          
                System.out.println("2-Print Info of All Students ");                          
               System.out.println("3-Display grade of A Specific student");                           
                System.out.println("4-Exit");
                System.out.println(""); 
                choice = Stdin.readInteger();
         }// end method menu
         public static void main(String args[ ])
         { studentList myList = new studentList();//myList object is created
    myList.menu();
                             }//end main
    }// end of class ListTest
              

    you have mentioned about the class "studentList" but that class is not to be found in the code you have pasted. its instead "ListTest". And the "menu" function seems to b a part of "ListTest" class. Can you provide the structure of the classes "studentList" and "Student" so that the problem can be more clearly understood?
    also you are using the variable "Stdin" in the line int choice = Stdin.readInteger(); where as you have not declared this variable.
    in the "switch" statement you are calling two different functions for the same case "3" where as it should be "case 3" and "case 4" respectively.
    in the "main" you are calling the "menu" function without any parameter while you actually want to pass argument of type "studentList".

  • Help with 'cannot find symbol' error

    Ive written the following code. It is an excerpt from my entire class.
    When I try to compile the code I get the error:-
    cannot find symbol
    Symbol: variable playerRun1
    location: this class
    public void analysePlayerMove()
              if (playerGo == true)
                   if (playerMove.getComponentCount() == 0)
                        JOptionPane.showMessageDialog(this, "You Have Not Made A Move", "Empty Move", JOptionPane.ERROR_MESSAGE);
                   else
                        if (areTherePickUps == false)
                             for (int j=0; j<playerMove.getComponentCount(); j++)
                                  //reversing the players hand, because what is displayed on the GUI is reversed
                                  Component[] playerRun = playerMove.getComponentsInLayer(playerMove.DEFAULT_LAYER);
                                  Component[] playerRun1 = new Component[playerRun.length];
                                  int reverse = playerRun.length-1;
                                  for (int k=0; k<playerRun.length; k++)
                                       playerRun1[k] = playerRun[reverse];
                                       reverse--;
                             if (acePlayed == true && playerRun1.length == 1)
                                  if (playerRun1[0] != acePlayedSuit)
                                       JOptionPane.showMessageDialog(this, "Your Move Is Not Valid", "Invalid Move", JOptionPane.ERROR_MESSAGE);
                                  else
                                       //remove the cards from the players move hand and add them to the bottom of the shredded deck
         }I dont understand why I am getting this error, I clearly define the variable.

    Yes, but the variable is declared inside a block and so it's local to that block. You can't use it outside its scope, which is the block in which you declared it. Re-read the section of your book about variable scope.

  • Error code on cannot find symbol

    Hi,
    I compiler a file with error: cannot find symbol. but I can't found the problem.
    Can anyone help.
    public class WriteExcel
      private WritableCellFormat timesBoldUnderline;
      private WritableCellFormat times;
      final DecimalFormat df = new DecimalFormat("#,##0.00");
      private void createLabel(WritableSheet paramWritableSheet)
        throws WriteException
      String[] arrayOfString = { "Roy Year", "Roy Dist No", "Dist Type", "Ip Base No", "Ip Name No"};
        int[] arrayOfInt = { 10, 12, 10, 12, 15};
        WritableFont localWritableFont1 = new WritableFont(WritableFont.TIMES, 10);
        this.times = new WritableCellFormat(localWritableFont1);
        this.times.setWrap(true);
        WritableFont localWritableFont2 = new WritableFont(WritableFont.TIMES, 10, WritableFont.BOLD, false, UnderlineStyle.SINGLE);
        this.timesBoldUnderline = new WritableCellFormat(localWritableFont2);
        this.timesBoldUnderline.setWrap(true);
        CellView localCellView = new CellView();
        localCellView.setFormat(this.times);
        localCellView.setFormat(this.timesBoldUnderline);
        for (int i = 0; i < arrayOfString.length; i++)
          paramWritableSheet.setColumnView(i, arrayOfInt[i]);
          addCaption(paramWritableSheet, i, 0, arrayOfString[i]);
    error code : "cannot find symbol"

    Hi
    Also I note that you have no import statetments, can you send me the whole file. How is the file executed in a web server or as part of a standard JVM ? Together with any other classes outside of the JDK that are required for compilation.

Maybe you are looking for

  • JSF 2.0 - ADF Direction

    Can any Oracle people provide information about the direction/roadmap/plan for ADF and JSF 2 support? Actually ADF supports just JSF 1.2, right? Thks in advance

  • Passing value thru parameters

    select * from (select b.accode,c.actitle,nvl(sum(b.debit),0) op_dr,nvl(sum(b.credit),0) op_cr from v_mast a, v_det b, chart c where a.v_type=b.v_type and a.vouchno=b.vouchno and b.accode=c.accode and a.VOID='F' and a.posted_by is not null and a.v_dat

  • After update it starts asking me for serial and I dont have it!!!!

    Ok so I just updated to 10.0.1 and when I clicked on Adobe Photoshop CS3 it asked me for registration code again, but I dont have it, what can I do???

  • My iTunes cannot view other libraries, but other libraries can view me

    I've always been able to view other Music Libraries on my local area network. However, I recently moved into a new apartment. I use a wireless network along with two of my roommates, and both of them have iTunes on PCs. They have no problem viewing a

  • Mobile chat using bluetooth

    hello everyone i am going to develop a software that enable to chat using bluetooth in mobile but i am getting some problems like i am unable to locate the class file of javax.bluetooth, which module is downloaded,and from a website. i don't know whe