Edit C:\Program Files\Java\jdk1.8.0_121\javafx\scene\media\MediaMarkerEvent.java
/* * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.media; import javafx.event.ActionEvent; import javafx.util.Duration; import javafx.util.Pair; /** * An {@link ActionEvent} representing a media marker. A marker is added to a * {@link Media} which is then played by a {@link MediaPlayer}. The event * is fired when the playback position reaches the position of the marker. * * @see MediaPlayer#onMarker * @since JavaFX 2.0 */ public class MediaMarkerEvent extends ActionEvent { private static final long serialVersionUID = 20121107L; private Pair<String,Duration> marker; MediaMarkerEvent(Pair<String,Duration> marker) { super(); this.marker = marker; } /** * Retrieves the marker the event represents. * * @return the value of the marker. */ public Pair<String,Duration> getMarker() { return marker; } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de