Uploaded image for project: 'Pivot'
  1. Pivot
  2. PIVOT-324

WTKXSerializer get method enhancement

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • None
    • 1.4
    • wtk-wtkx
    • None

    Description

      Method get() of class WTKXSerializer returns value of type Object, you see:
      http://incubator.apache.org/pivot/1.3/docs/api/org/apache/pivot/wtkx/WTKXSerializer.html#get(java.lang.String)

      As demostrated in documentation it cause code like this: (http://incubator.apache.org/pivot/1.3/tutorials/push_buttons.html)
      private PushButton pushButton = null;
      ...
      pushButton = (PushButton)wtkxSerializer.get("pushButton");

      In an alternative way, get() method may be declared as:
      <T> T get(String key)

      { //implementation }

      This way client code will be just:
      pushButton = wtkxSerializer.get("pushButton");

      so the type-case will be implicit. This feature is widely used in HtmlUnit framework and I find it quite neat.
      May be it coult be adopted to pivot project

      Attachments

        Activity

          People

            gbrown Gregory K. Brown
            mamonov Dmitry Mamonov
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: