dndvetoexception.java

来自「JGraph扩展应用。自定义Renderer,自定义视图View实现自定义工作流」· Java 代码 · 共 29 行

JAVA
29
字号
/* * $Id: DnDVetoException.java,v 1.1 2006/05/08 19:36:50 aviva Exp $ * Read the "license.txt" file for licensing information. * (C) Antonio Vieiro. All rights reserved. */package net.antonioshome.swing.treewrapper;/** * DnDVetoException is an exception thrown to signal that a drag and drop *   operation is not valid. * @author Antonio Vieiro (antonio@antonioshome.net), $Author: aviva $ * @version $Revision: 1.1 $ */public class DnDVetoException  extends Exception{  /**   * Creates a new instance of DnDVetoException   * @param aMessage the message to show.   */  public DnDVetoException( String aMessage )  {    super( aMessage );  }    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?