Search Results
OK to copy?
Examples 1 through 10 of
11 (0.024 seconds)
Class:
org.springframework.beans.ConcurrentBeanWrapperTests
©,
Rating:
0% of 0,
C2
Class: org.springframework.util.DefaultPropertiesPersister ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.BuildNumber ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.types.selectors.modifiedselector.PropertiesfileCache ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.optional.PropertyFileTest ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.optional.PropertyFileTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.PreferenceManager ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.optional.EchoProperties ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.optional.PropertyFile ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.optional.unix.Symlink ©, Rating: 0% of 0, C1
089 ByteArrayOutputStream buffer = new ByteArrayOutputStream();
090 try {
091 p.store(buffer, null);
092 }
093 catch (IOException e) {
Class: org.springframework.util.DefaultPropertiesPersister ©, Rating: 0% of 0, C1
131
132 public void store(Properties props, OutputStream os, String header) throws IOException {
133 props.store(os, header);
134 }
135
Class: org.apache.tools.ant.taskdefs.BuildNumber ©, Rating: 0% of 0, C1
089 final String header = "Build Number for ANT. Do not edit!";
090
091 properties.store(output, header);
092 } catch (final IOException ioe) {
093 final String message = "Error while writing " + myFile;
Class: org.apache.tools.ant.types.selectors.modifiedselector.PropertiesfileCache ©, Rating: 0% of 0, C2
142 BufferedOutputStream bos = new BufferedOutputStream(
143 new FileOutputStream(cachefile));
144 cache.store(bos, null);
145 bos.flush();
146 bos.close();
Class: org.apache.tools.ant.taskdefs.optional.PropertyFileTest ©, Rating: 0% of 0, C1
171
172 FileOutputStream fos = new FileOutputStream(buildPropsFilePath);
173 buildProps.store(fos, null);
174 fos.close();
175 }
Class: org.apache.tools.ant.taskdefs.optional.PropertyFileTest ©, Rating: 0% of 0, C1
155
156 FileOutputStream fos = new FileOutputStream(testPropsFilePath);
157 testProps.store(fos, "defaults");
158 fos.close();
159 }
Class: org.apache.batik.util.PreferenceManager ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.optional.EchoProperties ©, Rating: 0% of 0, C1
388 String header) throws IOException {
389 try {
390 props.store(os, header);
391
392 } catch (IOException ioe) {
Class: org.apache.tools.ant.taskdefs.optional.PropertyFile ©, Rating: 0% of 0, C1
208 try {
209 bos = new BufferedOutputStream(new FileOutputStream(propertyfile));
210 properties.store(bos, comment);
211 } catch (IOException ioe) {
212 throw new BuildException(ioe, getLocation());
Class: org.apache.tools.ant.taskdefs.optional.unix.Symlink ©, Rating: 0% of 0, C1
453 try {
454 fos = new FileOutputStream(propertyfile);
455 properties.store(fos, comment);
456
457 } catch (IOException ioe) {