Search Results
OK to copy?
Examples 31 through 40 of
1017 (0.0060 seconds)
Class:
org.apache.axis.tools.ant.wsdl.MappingSet
©,
Rating:
0% of 0,
C1
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C2
Class: org.apache.webapp.admin.SetLocaleAction ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
Class: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping ©, Rating: 100% of 1, C2
Class: com.technoetic.xplanner.security.SecurityHelper ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.security.SecurityHelper ©, Rating: 100% of 1, C2
jgoodies_binding Class: com.jgoodies.binding.tests.event.PropertyChangeReport ©, Rating: 0% of 0, C1
jgoodies_validation Class: com.jgoodies.validation.tests.event.PropertyChangeReport ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.security.NullSecurityFilter ©, Rating: 0% of 0, C1
094 public void execute(ProjectComponent owner, HashMap map, boolean packageIsKey) {
095 Iterator it=mappings.iterator();
096 while (it.hasNext()) {
097 Mapper mapper = (Mapper) it.next();
098 mapper.execute(owner,map, packageIsKey);
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C2
85 private void dropComments(Properties props) {
86 Iterator keys = props.keySet().iterator();
87 while (keys.hasNext()) {
88 String key = (String) keys.next();
89 // A comment line starts with one of our comment markers
Class: org.apache.webapp.admin.SetLocaleAction ©, Rating: 0% of 0, C2
080 Iterator iterator = locales.getSupportedLocales().iterator();
081 Locale currentLocale = null;
082 while (iterator.hasNext()) {
083 currentLocale = (Locale) iterator.next();
084 if (requestedLocale.equals(currentLocale.toString())) {
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
44 if (in != null) {
45 customProperties.load(in);
46 for (Iterator iterator = customProperties.keySet().iterator(); iterator.hasNext();) {
47 String key = (String)iterator.next();
48 properties.put(key, customProperties.get(key));
Class: org.springframework.web.servlet.handler.SimpleUrlHandlerMapping ©, Rating: 100% of 1, C2
087 else {
088 Iterator itr = this.urlMap.keySet().iterator();
089 while (itr.hasNext()) {
090 String url = (String) itr.next();
091 Object handler = this.urlMap.get(url);
Class: com.technoetic.xplanner.security.SecurityHelper ©, Rating: 0% of 0, C2
55 if (subject != null) {
56 Iterator people = subject.getPrincipals(PersonPrincipal.class).iterator();
57 if (people.hasNext()) {
58 return (PersonPrincipal)people.next();
59 }
Class: com.technoetic.xplanner.security.SecurityHelper ©, Rating: 100% of 1, C2
30 if (subject != null) {
31 Iterator roles = subject.getPrincipals(Role.class).iterator();
32 while (roles.hasNext()) {
33 Role role = (Role)roles.next();
34 if (role.getName().equals(roleName)) {
jgoodies_binding Class: com.jgoodies.binding.tests.event.PropertyChangeReport ©, Rating: 0% of 0, C1
067 public int multicastEventCount() {
068 int count = 0;
069 for (Iterator i = events.iterator(); i.hasNext();) {
070 PropertyChangeEvent event = (PropertyChangeEvent) i.next();
071 if (event.getPropertyName() == null)
jgoodies_validation Class: com.jgoodies.validation.tests.event.PropertyChangeReport ©, Rating: 0% of 0, C1
067 public int multicastEventCount() {
068 int count = 0;
069 for (Iterator i = events.iterator(); i.hasNext();) {
070 PropertyChangeEvent event = (PropertyChangeEvent) i.next();
071 if (event.getPropertyName() == null)
Class: com.technoetic.xplanner.security.NullSecurityFilter ©, Rating: 0% of 0, C1
72 Person person = null;
73 Iterator peopleIterator = people.iterator();
74 if (peopleIterator.hasNext()) {
75 person = (Person)peopleIterator.next();
76 }