Bug 482746 - "Generate JavaFX Getters and Setters" uses full qualified names of parameters and return types
Summary: "Generate JavaFX Getters and Setters" uses full qualified names of parameters...
Status: RESOLVED FIXED
Alias: None
Product: Efxclipse
Classification: Technology
Component: Tooling (show other bugs)
Version: 2.1.0   Edit
Hardware: PC Windows 10
: P3 normal (vote)
Target Milestone: 2.2.0   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-11-21 08:01 EST by Denny Israel CLA
Modified: 2015-11-23 05:04 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Denny Israel CLA 2015-11-21 08:01:36 EST
When generating property getters and setter via "Generate JavaFX Getters and Setters" it generates the methods with full qualified names of call parameters and restun types whioch is not necessary in most cases.

Example:
  public final StringProperty nameProperty() {
    return this.name;
  }
  public final java.lang.String getName() {
    return this.nameProperty().get();
  }
  public final void setName(final java.lang.String name) {
    this.nameProperty().set(name);
  }

The Generator should write "String" instead of "java.lang.String".