Searched defs:city (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/util/
H A DTeamDetails.java47 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 DWebCustomer.java70 @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 DLocalLeague.java57 public LocalTeam getTeamByCity(String city) throws FinderException; argument
58 public String getTeamsNameByCity(String city) throws FinderException; argument
H A DLocalTeamHome.java50 public LocalTeam create (String id, String name, String city) argument
H A DLeagueBean.java74 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 DLocalPlayerHome.java70 public Collection findByCity(String city) argument
H A DTeamBean.java62 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 DRosterApp_derby.sql24 city VARCHAR(255),
/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/roster/
H A DRoster.java92 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 DRosterBean.java264 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