本文整理汇总了Java中com.googlecode.mp4parser.AbstractContainerBox类的典型用法代码示例。如果您正苦于以下问题:Java AbstractContainerBox类的具体用法?Java AbstractContainerBox怎么用?Java AbstractContainerBox使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AbstractContainerBox类属于com.googlecode.mp4parser包,在下文中一共展示了AbstractContainerBox类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: FindBox
import com.googlecode.mp4parser.AbstractContainerBox; //导入依赖的package包/类
public static Box FindBox( AbstractContainerBox box, String type ) {
for(Box childBox : box.getBoxes())
{
if ( childBox.getType().equals( type ) ) {
return childBox;
} else if ( childBox instanceof AbstractContainerBox ) {
Box foundBox = FindBox( (AbstractContainerBox) childBox, type );
if ( foundBox != null ) {
return foundBox;
}
}
}
return null;
}
示例2: addChildren
import com.googlecode.mp4parser.AbstractContainerBox; //导入依赖的package包/类
public void addChildren( List<Atom> atoms, List<Atom> atomsForAdapter ) {
if ( mBox instanceof AbstractContainerBox ) {
AbstractContainerBox containerBox = (AbstractContainerBox) mBox;
for ( Box childBox : containerBox.getBoxes() ) {
Atom childAtom = new Atom( childBox, mDepth + 1 );
atoms.add( childAtom );
atomsForAdapter.add( childAtom );
childAtom.addChildren( atoms, childAtom.isExpanded() ? atomsForAdapter : new ArrayList<Atom>() );
mChildAtoms.add( childAtom );
}
}
}