public class FanOut
extends java.lang.Object
| Constructor and Description |
|---|
FanOut(org.objectweb.asm.Label from)
construct a new empty link
|
FanOut(org.objectweb.asm.Label from,
org.objectweb.asm.Label to)
construct a new link with one element in the target set
|
FanOut(org.objectweb.asm.Label from,
org.objectweb.asm.Label to1,
org.objectweb.asm.Label to2)
construct a new link with two elements in the target set
|
| Modifier and Type | Method and Description |
|---|---|
void |
append(org.objectweb.asm.Label to)
add a new link to the target set
|
org.objectweb.asm.Label |
getFrom() |
org.objectweb.asm.Label |
getTo(int i)
retrieve alink from the target set by index
|
int |
getToCount()
retrieve the size of the target set
|
java.util.Iterator<org.objectweb.asm.Label> |
iterator()
obtain an iterator over the target set
|
public FanOut(org.objectweb.asm.Label from)
from - public FanOut(org.objectweb.asm.Label from,
org.objectweb.asm.Label to)
from - to - public FanOut(org.objectweb.asm.Label from,
org.objectweb.asm.Label to1,
org.objectweb.asm.Label to2)
from - to1 - to2 - public org.objectweb.asm.Label getFrom()
public void append(org.objectweb.asm.Label to)
to - public org.objectweb.asm.Label getTo(int i)
i - public int getToCount()
public java.util.Iterator<org.objectweb.asm.Label> iterator()
Copyright © 2013. All Rights Reserved.