Edit D:\app\Administrator\product\11.2.0\dbhome_1\ide\src\javax\ide\menu\spi\Section.java
/* * Copyright 2005 by Oracle USA * 500 Oracle Parkway, Redwood Shores, California, 94065, U.S.A. * All rights reserved. */ package javax.ide.menu.spi; import java.util.List; /** * A section is a collection of Items and Menus. */ public final class Section extends Positionable { private final PositionMap _items = new PositionMap(); public Section( String id ) { super( id ); } /** * Get the content of this section. The items in the list may be instances * of either Item or Menu. * * @return the items in this section. */ public List getContent() { return _items.getSortedItems(); } public Positionable getItem( String id ) { return _items.get( id ); } void addItem( Positionable item ) { _items.add( item ); } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de