Package plugins.audioPlayer.javazoom.jlgui.player.amp.tag

Examples of plugins.audioPlayer.javazoom.jlgui.player.amp.tag.TagInfoFactory


        if (readInfo == true)
        {
            // Read Audio Format and read tags/comments.
            if ((_location != null) && (!_location.equals("")))
            {
                TagInfoFactory factory = TagInfoFactory.getInstance();
                _taginfo = factory.getTagInfo(l);
            }
        }
        _displayName = getFormattedDisplayName();
    }
View Full Code Here


        }
        // Display Tag Info.
        if (pli != null)
        {
            TagInfo taginfo = pli.getTagInfo();
            TagInfoFactory factory = TagInfoFactory.getInstance();
            TagInfoDialog dialog = factory.getTagInfoDialog(taginfo);
            dialog.setLocation(player.getLoader().getLocation().x, player.getLoader().getLocation().y + player.getHeight());
            dialog.show();           
        }
    }
View Full Code Here

TOP

Related Classes of plugins.audioPlayer.javazoom.jlgui.player.amp.tag.TagInfoFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.