facebook

jsp editor reports errors when taglib has attributes like ..

  1. MyEclipse IDE
  2.  > 
  3. General Development
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #207970 Reply

    Hello,

    I used myeclipse with eclipse30RC1 and is working nice but i have the following problems:

    if a taglib has a attribute like “xAttribute” the java bean convention is to have methods:
    setxAttribute() and getxAttrbute and not setXAttribute and getXAttribute as myeclipse expects. In all taglibs that are using naming conventions like that, i got false errors (in reality the jsps are working in any container and any java version).

    #208020 Reply

    Riyad Kalla
    Member

    We will look into this.

    #208054 Reply

    No Operation
    Member

    well, it seems hard to find a reliable specification for this.

    So let’s have a look into the sources of Sun’s Java code in java.beans.* and you find the method capitalize():

    static String capitalize(String propertyName) {
      return propertyName.substring(0, 1).toUpperCase() + propertyName.substring(1);
    }
    

    => where is the bug?

    NOP

Viewing 3 posts - 1 through 3 (of 3 total)
Reply To: jsp editor reports errors when taglib has attributes like ..

You must be logged in to post in the forum log in