代码搜索:note
找到约 10,000 项符合「note」的源代码
代码结果 10,000
www.eeworm.com/read/354980/3070747
h note.h
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
www.eeworm.com/read/354980/3070974
cpp note.cpp
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
www.eeworm.com/read/353301/3086820
java~ note.java~
/*
* Note.java
*
* Created on 2005年8月14日, 下午2:20
*/
package music;
/**
*
* @author Bluewater
*/
public class Note {
/** Creates a new instance of Note */
public Note() {
}
www.eeworm.com/read/353301/3086822
java note.java
/*
* Note.java
*
* Created on 2005年8月14日, 下午2:20
*/
package music;
/**
*
* @author Bluewater
*/
class Note {
private int value;
private Note(int val) { value = val; }
public static fin
www.eeworm.com/read/353051/3091087
java note.java
//: polymorphism/music/Note.java
// Notes to play on musical instruments.
package polymorphism.music;
public enum Note {
MIDDLE_C, C_SHARP, B_FLAT; // Etc.
} ///:~
www.eeworm.com/read/352920/3092223
java note.java
package com.laoer.bbscs.web.action;
import com.laoer.bbscs.web.form.*;
import com.laoer.bbscs.web.servlet.*;
import com.laoer.bbscs.sys.*;
import com.laoer.bbscs.bean.*;
import com.laoer.comm.u
www.eeworm.com/read/265946/4279243
xpm no-note.xpm
/* XPM */
static char * scratch[] = {
"14 26 1 1",
" c none",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
"
www.eeworm.com/read/261929/4318660
java note.java
package untitled2;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
public class note extends Applet {
int i=10,j=10;
Color mycolor;
Font myfont;
String str;
boolean isSta
www.eeworm.com/read/252364/4409481
java note.java
//: c07:music:Note.java
// Notes to play on musical instruments.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
package c07.