35 lines
453 B
35 lines
453 B
/*
|
|
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package com.sun.java.swing;
|
|
|
|
/**
|
|
* This class is preserved for backward compatibility with JDK 6.
|
|
*
|
|
* @deprecated Use {@link javax.swing.Painter} instead.
|
|
*/
|
|
@Deprecated
|
|
public interface Painter<T> extends javax.swing.Painter<T> {
|
|
}
|