|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object javax.swing.undo.AbstractUndoableEdit javax.swing.undo.CompoundEdit
public class CompoundEdit
AbstractUndoableEdit の具象サブクラスで、小さい UndoableEdit をまとめて大きなものに組み立てます。
フィールドの概要 | |
---|---|
protected Vector<UndoableEdit> |
edits
CompoundEdit によって、ひとまとめに元に戻す/再実行する処理を実行された UndoableEdit のコレクションです。 |
クラス javax.swing.undo.AbstractUndoableEdit から継承されたフィールド |
---|
RedoName, UndoName |
コンストラクタの概要 | |
---|---|
CompoundEdit()
|
メソッドの概要 | |
---|---|
boolean |
addEdit(UndoableEdit anEdit)
この編集結果が inProgress の場合、anEdit を受け付けて true を返します。 |
boolean |
canRedo()
isInProgress が true か、またはスーパークラスが false を返す場合に false を返します。 |
boolean |
canUndo()
isInProgress が true か、またはスーパークラスが false を返す場合に false を返します。 |
void |
die()
各編集結果に対して、それが追加されたときと逆の順序で die を送ります。 |
void |
end()
inProgress を false に設定します。 |
String |
getPresentationName()
edits に追加された最後の UndoableEdit から getPresentationName を返します。 |
String |
getRedoPresentationName()
edits に追加された最後の UndoableEdit から getRedoPresentationName を返します。 |
String |
getUndoPresentationName()
edits に追加された最後の UndoableEdit から getUndoPresentationName を返します。 |
boolean |
isInProgress()
この編集結果が進行中の場合、つまり、まだ終了指示を受け取っていない場合に、true を返します。 |
boolean |
isSignificant()
edits 内の UndoableEdit のどれかが true を返した場合に true を返します。 |
protected UndoableEdit |
lastEdit()
edits 内の最後の UndoableEdit を返します。 |
void |
redo()
格納されているすべての UndoableEdit に、追加した順序で redo を送ります。 |
String |
toString()
このオブジェクトのプロパティを表示および識別する文字列を返します。 |
void |
undo()
格納されているすべての UndoableEdit に、追加したときと逆の順序で undo を送ります。 |
クラス javax.swing.undo.AbstractUndoableEdit から継承されたメソッド |
---|
replaceEdit |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
フィールドの詳細 |
---|
protected Vector<UndoableEdit> edits
CompoundEdit
によって、ひとまとめに元に戻す/再実行する処理を実行された UndoableEdit
のコレクションです。
コンストラクタの詳細 |
---|
public CompoundEdit()
メソッドの詳細 |
---|
public void undo() throws CannotUndoException
UndoableEdit
に、追加したときと逆の順序で undo
を送ります。
UndoableEdit
内の undo
AbstractUndoableEdit
内の undo
CannotUndoException
- canUndo
が false
を返す場合AbstractUndoableEdit.canUndo()
public void redo() throws CannotRedoException
UndoableEdit
に、追加した順序で redo
を送ります。
UndoableEdit
内の redo
AbstractUndoableEdit
内の redo
CannotRedoException
- canRedo
が false
を返す場合AbstractUndoableEdit.canRedo()
protected UndoableEdit lastEdit()
edits
内の最後の UndoableEdit
を返します。ただし、edits
が空の場合は null
を返します。
public void die()
die
を送ります。
UndoableEdit
内の die
AbstractUndoableEdit
内の die
die()
public boolean addEdit(UndoableEdit anEdit)
inProgress
の場合、anEdit
を受け付けて true を返します。
この CompoundEdit
に追加された最後の編集結果は、addEdit(anEdit)
を実行する機会を与えられます。その編集結果が拒否する (false を返す) と、anEdit
が最後の編集結果に対して replaceEdit
を実行する機会を与えられます。ここで anEdit
が false を返すと、edit
に追加されます。
UndoableEdit
内の addEdit
AbstractUndoableEdit
内の addEdit
anEdit
- 追加される編集結果
inProgress
の場合は true、そうでない場合は false を返すUndoableEdit.addEdit(javax.swing.undo.UndoableEdit)
public void end()
inProgress
を false に設定します。
canUndo()
,
canRedo()
public boolean canUndo()
isInProgress
が true か、またはスーパークラスが false を返す場合に false を返します。
UndoableEdit
内の canUndo
AbstractUndoableEdit
内の canUndo
alive
であり、hasBeenDone
が true
の場合、trueisInProgress()
public boolean canRedo()
isInProgress
が true か、またはスーパークラスが false を返す場合に false を返します。
UndoableEdit
内の canRedo
AbstractUndoableEdit
内の canRedo
alive
であり、hasBeenDone
が false
の場合、true
isInProgress()
public boolean isInProgress()
end()
public boolean isSignificant()
edits
内の UndoableEdit
のどれかが true を返した場合に true を返します。すべてが false を返した場合、false を返します。
UndoableEdit
内の isSignificant
AbstractUndoableEdit
内の isSignificant
UndoableEdit.isSignificant()
public String getPresentationName()
edits
に追加された最後の UndoableEdit
から getPresentationName
を返します。edits
が空の場合、スーパークラスを呼び出します。
UndoableEdit
内の getPresentationName
AbstractUndoableEdit
内の getPresentationName
AbstractUndoableEdit.getUndoPresentationName()
,
AbstractUndoableEdit.getRedoPresentationName()
public String getUndoPresentationName()
edits
に追加された最後の UndoableEdit
から getUndoPresentationName
を返します。edits
が空の場合、スーパークラスを呼び出します。
UndoableEdit
内の getUndoPresentationName
AbstractUndoableEdit
内の getUndoPresentationName
getPresentationName
が "" でない場合は、キー AbstractUndoableEdit.undoText
を使用してデフォルトテーブルから取得した値に、空白文字および getPresentationName
を追加した値。getPresentationName
が "" の場合は、デフォルト値だけが返される。AbstractUndoableEdit.getPresentationName()
public String getRedoPresentationName()
edits
に追加された最後の UndoableEdit
から getRedoPresentationName
を返します。edits
が空の場合、スーパークラスを呼び出します。
UndoableEdit
内の getRedoPresentationName
AbstractUndoableEdit
内の getRedoPresentationName
getPresentationName
が "" でない場合は、キー AbstractUndoableEdit.redoText
を使用してデフォルトテーブルから取得した値の後ろに空白文字および getPresentationName
を追加したもの。getPresentationName
が "" の場合は、デフォルト値だけが返されるAbstractUndoableEdit.getPresentationName()
public String toString()
AbstractUndoableEdit
内の toString
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。