Include only interfaces and package-level comments -

hi jd forum -
forgive if this is covered elsewhere. i've found references to -include, -exclude, and 'docset', but i can't find these in the documentation at http://java.sun.com/j2se/1.3/docs/tooldocs/win32/javadoc.html (maybe it's for a different version).
i want to only include documentation for interfaces and exclude the classes -- and / or include documentation on a filename basis -- like 'document only IBI*.java.' also, i want to include ONLY package-level documentation (package.html) for some packages but not the javadocs for their associated classes...
are these things possible? i've looked into -package, -protected, and -public, but these don't seem to cover it.
thanks in advance;
-m

The -include and -exclude options and @docset tag were considered for 1.4 but then decided against by the Javadoc team as we look for other solutions.
You can document all public interfaces by passing their source filenames in to javadoc. Say, if the source files are in ./src, then:
javadoc -d docs ./src/com/package/Interface1.java /src/com/package/Interface2.java
You can use the wildcard asterisk here as well:
javadoc -d docs ./src/IBI*.java
There's no way to document the package-level documentation without the associated classes. Javadoc 1.4 has an -exclude option, but it works only to exclude packages from the -subpackages option, which is a shortcut for passing in package names.
A workaround could be to put the package.html file in a doc-files directory and then add a link to it in overview.html. It won't be processed, so won't have the navigation bars on the top and bottom, and cannot be automatically linked to from other places (index).
-Doug Kramer
Javadoc team

Similar Messages

  • Implementing interfaces and packages part deux

    Ok, I've been reading some more posts, and it seems like a lot of people have the same issues as I have right now.
    One suggestion that i read was to go into the directory that is the package name.
    That is if everything is in package Grid, then go into ./src/Grid directory and then do a javac *.java
    when I do that, all my code, even the one that implements an interface will compile. But when I don't do *.java within the /Grid directory, and lets say I am in the ./src directy and I do a javac Grid.Cell (where Cell is the class name), the program will not compile. Why is that...I haven't found a good answer as to why this isn't working yet. Please please help.

    I wont get into your directory structure bcz its makin me dizzy..
    hopefully it is ok.
    can you see a difference between these 2 lines that you say you have tried:
    javac *.java <<<< u said compiles
    javac Grid.Cell <<<< u said doesnt compile
    Two things come to mind:
    1.javac needs the .java extension to compile
    2.you need to be IN the directory where the source is to compile
    k?
    try it...

  • Support package level is not sufficient

    Hi,
    In IDES server we are using Product version: Ecc 6.0 EHP3,
    Here only 10 Support Package level required, but we have 11 package levels.
    So those are sufficient.
    Still when creating purchase order and sales order, the error is appearing,
    "note 1600482: Support package level is not sufficient "
    below is attachment of error. I am sharing the Screenshot PFB.
    What to do??
    I have searched but couldn't find the solution..
    Regards
    Dewanshu Dutt Mathur

    Hello Dewanshu,
    The note specifies the following:
    If you are not sure whether or not you are using this specific functionality, we strongly recommend that you run the check report included in the related SAP Notes 1600090 and 1601021. The check reports allow you to easily check whether this specific pricing functionality is being used in your system(s).
    Also,
    it further specifies
    If you have any questions regarding this Note, you can contact us by creating a support ticket under the XX-PROJ-IMS-HA component identified above.
    So I hope you are creating an OSS message under the component described above.
    Regards,
    Siddhesh

  • Hi, is there some kind of package we can buy that would include only photoshop, illustrator and indesign?

    hi, is there some kind of package we can buy that would include only photoshop, illustrator and indesign?

    The Cloud Complete membership would be the cheapest option.

  • Separate interfaces and classes in separate packages?

    I am writing an application in the package 'models.geometry'. I am beginning to get a growing number of interfaces with corresponding implementation classes. I therefore consider adding another packages an move all the interfaces to this package and keep the implementation in the original package:
    'models.igeometry' // for the interfaces
    'models.geometry' // for the implementation
    But is this interface/class - package separation good practice?

    First of: Usage of the prefix "I" to identify interfaces is rather rare in the Java world (it's not unheard of, but definitely not the norm). And I've never seen "i<package>" to identify a package containing interfaces, so I wouldn't suggest it.
    The question is: What does the code which uses your packages access? Does it only need the interfaces and a factory? In this case, I'd separate the packages into "models.geometry" and "models.geometry.impl".
    If the classes are first-level API, just as the interfaces (think Link/ArrayList, Map/HashMap), then I'd keep them in the same package or separate them on some other property.

  • Current View as filter in BPC Vs Planning level and package in BPS

    Hi,
         If I understand correctly, the current view is as like a filter in BPC as planning level and package in BPS, by comparing then I notice that the value for current can only be single value while in planning level and package we can have range, multiple value of single value.
        Let's have a planning scenario  we need to planning for every month based on the actual month data,
    in BPS we can easily configure two type of columns with actual and planning data, while in BPC, since the current view only  allow single value, we have to copy the actual data to planning data, then with the category set to planning, we can do our planning. Of course if there is hierarchy, we can use parent to allow to display all the child.
       The other option is to use the EvGTS function which can retrieve the data outside the current view.
       Anybody have other though on this?
    Edited by: JW on Jan 7, 2009 5:51 PM
    Edited by: JW on Jan 7, 2009 6:25 PM

    Hi JW-
    I did not mean to imply that the Current View (CV) is not a filter.  It can definitely be used to filter data presented from an EVDRE as well as other Ev functions, just like filters in BPS and IP.  However as a developer you have the option to use the CV or, through your configuration, disregard and/or override the CV settings.
    One example of disregarding CV settings is using standard Excel functions to provide the user a dropdown list from which to select certain dim members.  The drop down box selection could be used instead of the CV for defining Ev function selections.  My point is that you have multiple design paths of controlling what data is selected/processed; you are not only limited to the CV values.  From a performance viewpoint, you are correct in assuming that limiting the data selection will greatly impact overall performance.  Using the CV to limit data selection to enhance performance is very valid approach, just be aware that there are several alternative ways (other than using CV to control data selection) available to the developer.
    -Sheldon

  • Interface level comments....

    (Using JDK1.4.0 and the javadoc tool supplied with it. Platform:
    WinXP Pro, using Textpad as editor.)
    I've created a class with class level comments before, but when I try it
    with an interface the resulting javadoc doesn't show the comment.
    Example:
    * This is a class comment explaining what this class does.
    public class foobar {
    That works fine, and I can see the comment at the top of the description for the class.
    * This is a comment explaining what this interface is for.
    public interface barfoo {
    I get nothing when I look at this interfaces javadoc. The method and variable definitions for my code are all there, but I do want an explanation of the interface as well.
    Thanks in advance,
    Luggy

    I've never heard of this complaint. We certainly don't have problems
    with interface comments. I suggest looking at things other than the
    comment, such as: will the interface compile? is it in a file whose
    filename is the same as the interface? Please send the source file
    to javadoctool at sun.com and I'd be happy to try it.
    -Doug Kramer
    Javadoc team

  • [svn:fx-trunk] 15350: * More package and class level javadoc.

    Revision: 15350
    Revision: 15350
    Author:   [email protected]
    Date:     2010-04-12 13:22:21 -0700 (Mon, 12 Apr 2010)
    Log Message:
    More package and class level javadoc.  A small amount of commented
      out and dead code removal, too.
    QE notes:
    Doc notes:
    Bugs: N/A
    Reviewer: Corey
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/AbstractSyntaxTreeUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/As3Compiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/As3Configuration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/BytecodeEmitter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/CodeFragmentLogAdapter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/CodeFragmentsInputBuffer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/HostComponentExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/InheritanceEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/MetaDataEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/MetaDataParser.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/OffsetInputBuffer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SignatureExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SkinPartEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SkinPartExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/StyleEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/StyleExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SyntaxTreeEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/ArrayElementWatcher.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableExtension.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableFirstPassEval uator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableSecondPassEva luator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/ChangeEvent.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/ClassInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingExtension. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingFirstPassE valuator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/EvaluationWatcher.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/FunctionReturnWatcher .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/Info.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/InterfaceInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/PrefixedPrettyPrinter .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/PropertyWatcher.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/RepeaterComponentWatc her.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/RepeaterItemWatcher.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/TypeAnalyzer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/Watcher.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/XMLWatcher.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/package.html

    Gordon, it looks like its been a while since you made this post.  Not sure how valid it is now...   I am particularly interested in the LigatureLevel.NONE value.  It seems that it is no longer supported.
    How do I turn of ligatures in the font rendering?
    My flex project involves trying to match the font rendering of Apache's Batik rendering of SVG and ligatures have been turned off in that codebase.  Is there any way (even roundabout) to turn ligatures off in flash?
    Thanks,
    Om

  • [svn:fx-trunk] 15846: * Package and class level javadoc for the swfutils module.

    Revision: 15846
    Revision: 15846
    Author:   [email protected]
    Date:     2010-04-30 06:15:19 -0700 (Fri, 30 Apr 2010)
    Log Message:
    Package and class level javadoc for the swfutils module.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/BatikFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/DefineFont3Face.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FSType.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontDescription.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontFace.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontSet.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/JREFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/LocalFont.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/AbstractGraphics2D.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/GraphicContext.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/SpriteGraphics2D.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/BitmapImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/ImageUtil.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/JPEGImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/LosslessImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ILocalizedText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ILocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/LocalizationManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ResourceBundleLocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/XLRLocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionConstants.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionFactory.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/CompressionLevel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/DebugHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Dictionary.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Frame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Header.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Movie.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieMetaData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/RandomAccessBuffer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfConstants.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfFormatException.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Tag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoderReporter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagValues.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Branch.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/ConstantPool.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/DefineFunction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GetURL.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GetURL2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoFrame2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoLabel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Label.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Push.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/SetTarget.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/StoreRegister.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/StrictMode.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Try.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Unknown.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/WaitForFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/With.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineBitsBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineBitsLosslessBuilder .java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineShapeBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/EditTextBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/FontBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/ImageShapeBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/TagBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/TextBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/FillStyleBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/LineStyleBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/MatrixBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/PathIteratorWrapper.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/Point.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/RectBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ShapeIterator.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ShapeWithStyleBuilder.ja va
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ZoneRecordBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/DebugModule.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/DebugTable.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/LineRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/RegisterRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/CSMTextSettings.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DebugID.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBinaryData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBits.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBitsJPEG3.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBitsLossless.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButton.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButtonCxform.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButtonSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineEditText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont1.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont3.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont4.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontAlignZones.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineMorphShape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineScalingGrid.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSceneAndFrameLabelData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineShape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSprite.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineTag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineVideoStream.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoABC.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoInitAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/EnableDebugger.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ExportAssets.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/FrameLabel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/GenericTag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ImportAssets.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/Metadata.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/PlaceObject.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ProductInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/RemoveObject.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ScriptLimits.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SetBackgroundColor.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SetTabIndex.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ShowFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SoundStreamHead.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/StartSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SymbolClass.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/VideoFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ZoneRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/AbcPrinter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/Disassembler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SizeReport.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ActionList.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ArrayLists.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/BevelFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/BlurFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ButtonCondAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ButtonRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CXForm.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CXFormWithAlpha.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ClipActionRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ClipActions.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ColorMatrixFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ConvolutionFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CurvedEdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/DropShadowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/EdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FillStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Filter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FlashUUID.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FocalGradient.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GlowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GlyphEntry.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Gradient.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradientBevelFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradientGlowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ImportRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/KerningRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/LineStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MD5.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Matrix.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphFillStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphGradRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphLineStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Rect.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Shape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ShapeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ShapeWithStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/SoundInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/StraightEdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/StyleChangeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/TagList.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/TextRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/AbstractCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/Base64.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/ExceptionUtil.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/FileResolver.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/FileUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/IntMap.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/IntMapLRUCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/LRUCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/ResourceResolver.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/StringJoiner.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/StringUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/SwfImageUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/Trace.java
    Added Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/package.html

    Thank you very much!
    I cant believe this little comment has been so helpful!
    But yes it is:
    I explain, despite my efforts to find, googled it, forums, faqs, etc...
    no where it mentionned the manifest.fm file is... INSIDE the .jar!
    Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
    So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
    I am going to try that now.
    Actually.... :( no its mentionning my main class!
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-class: courseworkjava3d.Simple3D
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
    http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
    Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
    Edited by: CupofTea on Apr 13, 2008 3:28 AM

  • [svn:fx-trunk] 15810: * Package and class level javadoc for the antTasks module and some

    Revision: 15810
    Revision: 15810
    Author:   [email protected]
    Date:     2010-04-29 02:47:22 -0700 (Thu, 29 Apr 2010)
    Log Message:
    Package and class level javadoc for the antTasks module and some
      other stragglers.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AsDocTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AscTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/CompcTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/FlexTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/HtmlWrapperTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/MxmlcTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigAppendString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigBoolean.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigInt.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigVariable.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/NestedAttributeElement.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/OptionSpec.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/RepeatableConfigString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/DefaultScriptLimits.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/DefaultSize.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/FlexFileSet.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/Fonts.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/Metadata.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/RuntimeSharedLibraryPath.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/URLElement.java
        flex/sdk/trunk/modules/compiler/src/java/flash/css/LocalSource.java
        flex/sdk/trunk/modules/compiler/src/java/flash/css/URLSource.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/DependencyWalker.java
    Added Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/package.html
        flex/sdk/trunk/modules/antTasks/src/flex/ant/package.html
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/package.html

    Thank you very much!
    I cant believe this little comment has been so helpful!
    But yes it is:
    I explain, despite my efforts to find, googled it, forums, faqs, etc...
    no where it mentionned the manifest.fm file is... INSIDE the .jar!
    Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
    So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
    I am going to try that now.
    Actually.... :( no its mentionning my main class!
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-class: courseworkjava3d.Simple3D
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
    http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
    Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
    Edited by: CupofTea on Apr 13, 2008 3:28 AM

  • [svn:fx-trunk] 15702: * Package and class level javadoc for the

    Revision: 15702
    Revision: 15702
    Author:   [email protected]
    Date:     2010-04-26 09:16:12 -0700 (Mon, 26 Apr 2010)
    Log Message:
    Package and class level javadoc for the
      flex2.compiler.[css,extensions,fxg,i18n,io] packages.  Includes some
      dead code removal.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/ConditionTypeNotSupported.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/Import.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/ParseError.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/Reference.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/SelectorTypeNotSupported.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleConflictException.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleDef.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/Styles.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/UnqualifiedTypeSelector.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/UnresolvedQualifiedTypeSelect or.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ExtensionManager.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ExtensionsConfiguratio n.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IApplicationExtension. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ICompcExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IConfigurableExtension .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ILibraryExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IMxmlcExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IPreCompileExtension.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IPreLinkExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FXGCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FXGSymbolClass.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FlexResourceResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/I18nCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/I18nUtils.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/PropertyText.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/PropertyTranslationFormat.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/TranslationException.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/TranslationFormat.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/TranslationInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/DeletedFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/FileUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/InMemoryFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/LocalFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/NetworkFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/ResourceFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/TextFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/VirtualFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/VirtualZipFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/ZipFileHolder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Compc.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Mxmlc.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/package.html
    Removed Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/util/ListMap.java

  • Should HBO and Showtime be included with Extreme TV package

    Now I just discovered recently that few people are saying that they have the Extreme TV package for Verizon and part of that package includes HBO, Showtime, and other channels. Now I have been speaking with live chat a bunch of times already and they keep saying things that HBO, Showtime are only free for 3 months for new customers while existing customers have to pay. Now all I'm getting is that they're offering me 50% off the subscription. So I would like to no if HBO, Showtime, etc are provided free of charge with those who have the Extreme package in the NYC area because I am getting a "included in TV bundle" when I checked the channel lineup for those channels.

    friends of mine are still in this situation, after months of back and forth.  I do not think that FiOS will help at all.  The online package guide says hw getrsthis included, but he can;t get it.  Its Donkey Doo ( to put it nicely )

  • [svn] 696: Added package level and class level javadoc, where is was missing.

    Revision: 696
    Author: [email protected]
    Date: 2008-02-29 11:49:08 -0800 (Fri, 29 Feb 2008)
    Log Message:
    Added package level and class level javadoc, where is was missing.
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/AnonymousObjectGraph.jav a
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Array.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/AtEmbed.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/AtResource.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/LineNumberMapped.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Model.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/MovieClip.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/MxmlDocument.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Primitive.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Script.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/XML.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/XMLList.java
    Added Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/package.html

    Hi,
    The javadoc is generated to directory /home/usr/doc and I have added a package.html as mentioned. But no change found.
    There is also no package directory in the /doc.
    My original problem is that in the index.html, there are three frames, the right hand side frame showing the overwiew. In the overview page, there is the table of packages with two columns, the left columns showing the package name, while the right column showing blank.
    How to generate comments to the right column in the table in the right hand side frame in the index.html?
    Thanks,
    Wing

  • TS1702 I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem on ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem with link in email on my ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF's  and I cannot edit them as I could before such as using Tools Comment

    I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF’s  and I cannot edit them as I could before such as using Tools>Comment&Markup or Tools>Advanced Editing>TouchUp Text Tool. All the functions are greyed out. Please advise.

    What's your OS? Acrobat 8 is not compatible with any modern OS.
    On Thu, Jan 15, 2015 at 4:16 PM, thomasc1234 <[email protected]>

Maybe you are looking for