You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
392 B
18 lines
392 B
/*
|
|
* Copyright (c) 2000-2017 TeamDev Ltd. All rights reserved.
|
|
* TeamDev PROPRIETARY and CONFIDENTIAL.
|
|
* Use is subject to license terms.
|
|
*/
|
|
|
|
package com.example.jxbrowser.resources;
|
|
|
|
import javax.swing.*;
|
|
|
|
public class Resources {
|
|
|
|
public static ImageIcon getIcon(String fileName) {
|
|
// return new ImageIcon(Resources.class.getResource(fileName));
|
|
return null;
|
|
}
|
|
}
|