代码搜索:AudioPlayer
找到约 842 项符合「AudioPlayer」的源代码
代码结果 842
www.eeworm.com/read/313005/13599511
java command.java
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/313005/13599514
java macrocommand.java
package com.javapatterns.command.audioplayer2;
public interface MacroCommand extends Command
{
void execute();
void remove(Command toRemove);
void add(Command toAdd);
}
www.eeworm.com/read/313005/13599546
java julia.java
package com.javapatterns.command.audioplayer;
/**
* This is the Client role
*/
public class Julia
{
/**
* @link aggregation
*/
private static Keypad keypad ;
/*
www.eeworm.com/read/313005/13599548
java command.java
package com.javapatterns.command.audioplayer;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
www.eeworm.com/read/313005/13599551
java macrocommand.java
package com.javapatterns.command.audioplayer;
public interface MacroCommand extends Command
{
void execute();
void remove(Command toRemove);
void add(Command toAdd);
}
www.eeworm.com/read/305819/13760295
inf bld.inf
/**
*
* @brief Build Information file for AudioPlayer application
* application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// Export sound files for all IDEs.
// Note that
www.eeworm.com/read/152312/5674384
java agletaudioclip.java
package com.ibm.aglets;
/*
* @(#)AgletAudioClip.java
*
* IBM Confidential-Restricted
*
* OCO Source Materials
*
* 03L7246 (c) Copyright IBM Corp. 1996, 1998
*
* The source code for this
www.eeworm.com/read/141979/5767452
inf bld.inf
/**
*
* @brief Build Information file for AudioPlayer application
* application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// Export sound files for all IDEs.
// Note that
www.eeworm.com/read/136828/5845293
java command.java
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}