Searched defs:city (Results 1 - 10 of 10) sorted by relevance
/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/util/ |
H A D | TeamDetails.java | 47 private String city; field in class:TeamDetails 49 public TeamDetails (String id, String name, String city) { argument 53 this.city = city; 65 return city; 69 String s = id + " " + name + " " + city;
|
/glassfish-3.1.2/tests/community/persistence/servlet-jpa-app/src/java/persistence/ |
H A D | WebCustomer.java | 70 @NamedQuery(name = "WebCustomer.findByCity", query = "SELECT w FROM WebCustomer w WHERE w.city = :city"), 80 private String city; field in class:WebCustomer 114 * Gets the city of this WebCustomer. 115 * @return the city 118 return this.city; 122 * Sets the city of this WebCustomer to the specified value. 123 * @param city the new city 125 public void setCity(String city) { argument [all...] |
/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/team/ |
H A D | LocalLeague.java | 57 public LocalTeam getTeamByCity(String city) throws FinderException; argument 58 public String getTeamsNameByCity(String city) throws FinderException; argument
|
H A D | LocalTeamHome.java | 50 public LocalTeam create (String id, String name, String city) argument
|
H A D | LeagueBean.java | 74 public abstract LocalTeam ejbSelectTeamByCity(String city) argument 77 public abstract String ejbSelectTeamsNameByCity(String city) argument 95 public LocalTeam getTeamByCity(String city) throws FinderException { argument 97 return ejbSelectTeamByCity(city); 100 public String getTeamsNameByCity(String city) throws FinderException { argument 102 return ejbSelectTeamsNameByCity(city);
|
H A D | LocalPlayerHome.java | 70 public Collection findByCity(String city) argument
|
H A D | TeamBean.java | 62 public abstract void setCity(String city); argument 169 public String ejbCreate (String id, String name, String city) argument 175 setCity(city); 179 public void ejbPostCreate (String id, String name, String city) argument
|
/glassfish-3.1.2/tests/quicklook/ejb/cmp/sql/ |
H A D | RosterApp_derby.sql | 24 city VARCHAR(255),
|
/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/roster/ |
H A D | Roster.java | 92 public ArrayList getPlayersByCity(String city) argument 156 public TeamDetails getTeamOfLeagueByCity(String leagueKey, String city) argument 159 public String getTeamsNameOfLeagueByCity(String leagueKey, String city) argument
|
H A D | RosterBean.java | 264 public ArrayList getPlayersByCity(String city) { argument 270 players = playerHome.findByCity(city); 614 * @param city 638 * @param city 641 public TeamDetails getTeamOfLeagueByCity(String leagueKey, String city) { argument 642 Debug.print("RosterBean getTeamOfLeagueByCity(leagueKey, city)"); 648 team = league.getTeamByCity(city); 661 * @param city 664 public String getTeamsNameOfLeagueByCity(String leagueKey, String city) { argument 665 Debug.print("RosterBean getTeamsNameOfLeagueByCity(leagueKey, city)"); [all...] |
Completed in 75 milliseconds