Search Results
OK to copy?
Examples 1 through 10 of
33 (0.504 seconds)
jgoodies_looks
Class:
com.jgoodies.looks.common.ShadowPopupBorder
©,
Rating:
100% of 1,
C1
Class: org.springframework.metadata.commons.CommonsAttributeCompilerUtils ©, Rating: 0% of 0, C1
Class: org.springframework.util.Log4jConfigurerTests ©, Rating: 0% of 0, C1
Class: org.springframework.util.Log4jConfigurerTests ©, Rating: 0% of 0, C1
Class: org.springframework.core.io.ResourceTests ©, Rating: 0% of 0, C1
Class: org.springframework.core.io.ResourceTests ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.gui.LocationBar ©, Rating: 0% of 0, C1
Class: org.springframework.web.util.Log4jWebConfigurerTests ©, Rating: 0% of 0, C1
Class: org.springframework.web.util.Log4jWebConfigurerTests ©, Rating: 0% of 0, C1
Class: org.apache.batik.bridge.SVGBrokenLinkProvider ©, Rating: 0% of 0, C1
068 * The drop shadow is created from a PNG image with 8 bit alpha channel.
069 */
070 private static Image shadow
071 = new ImageIcon(ShadowPopupBorder.class.getResource("shadow.png")).getImage();
072
Class: org.springframework.metadata.commons.CommonsAttributeCompilerUtils ©, Rating: 0% of 0, C1
060 Project project = new Project();
061
062 URL markerUrl = CommonsAttributeCompilerUtils.class.getResource(MARKER_FILE);
063 File markerFile = new File(markerUrl.getFile());
064 // we know marker is in /target/test-classes
Class: org.springframework.util.Log4jConfigurerTests ©, Rating: 0% of 0, C1
059
060 public void testInitLoggingWithFileUrlAndRefreshInterval() throws FileNotFoundException {
061 URL url = getClass().getResource("testlog4j.properties");
062 doTestInitLogging(url.toString(), true);
063 }
Class: org.springframework.util.Log4jConfigurerTests ©, Rating: 0% of 0, C1
039
040 public void testInitLoggingWithAbsoluteFilePath() throws FileNotFoundException {
041 URL url = getClass().getResource("testlog4j.properties");
042 doTestInitLogging(url.toString(), false);
043 }
Class: org.springframework.core.io.ResourceTests ©, Rating: 0% of 0, C1
052
053 public void testUrlResource() throws IOException {
054 Resource resource = new UrlResource(getClass().getResource("Resource.class"));
055 doTestResource(resource);
056 }
Class: org.springframework.core.io.ResourceTests ©, Rating: 0% of 0, C1
047
048 public void testFileSystemResource() throws IOException {
049 Resource resource = new FileSystemResource(getClass().getResource("Resource.class").getFile());
050 doTestResource(resource);
051 }
Class: org.apache.batik.util.gui.LocationBar ©, Rating: 0% of 0, C1
107 try {
108 String s = rManager.getString("Panel.icon");
109 URL url = getClass().getResource(s);
110 if (url != null) {
111 label.setIcon(new ImageIcon(url));
Class: org.springframework.web.util.Log4jWebConfigurerTests ©, Rating: 0% of 0, C1
068
069 public void testInitLoggingWithFileUrlAndRefreshInterval() throws FileNotFoundException {
070 URL url = Log4jConfigurerTests.class.getResource("testlog4j.properties");
071 doTestInitLogging(url.toString(), true);
072 }
Class: org.springframework.web.util.Log4jWebConfigurerTests ©, Rating: 0% of 0, C1
048
049 public void testInitLoggingWithAbsoluteFilePath() throws FileNotFoundException {
050 URL url = Log4jConfigurerTests.class.getResource("testlog4j.properties");
051 doTestInitLogging(url.toString(), false);
052 }
Class: org.apache.batik.bridge.SVGBrokenLinkProvider ©, Rating: 0% of 0, C1
088
089 Class cls = SVGBrokenLinkProvider.class;
090 URL blURL = cls.getResource("BrokenLink.svg");
091 if (blURL == null) return;
092