Package com.tulskiy.musique.system.configuration

Examples of com.tulskiy.musique.system.configuration.Configuration.addPropertyChangeListener()


    private Track lastPlayed;
    private Expression albumFormat;

    public PlaybackOrder() {
        final Configuration config = Application.getInstance().getConfiguration();
        config.addPropertyChangeListener("playbackOrder.albumFormat", true, new PropertyChangeListener() {
            @Override
            public void propertyChange(PropertyChangeEvent evt) {
                String format = config.getString(evt.getPropertyName(), "%album%");
                albumFormat = Parser.parse(format);
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.