代码搜索结果

找到约 322,615 项符合 Interface 的代码

iclipboardhandler.cs

// Copyright (c) 2005 Daniel Grunwald // Licensed under the terms of the "BSD License", see doc/license.txt using System; namespace Base { public interface IClipboardHandler { bool Can

iundohandler.cs

// Copyright (c) 2005 Daniel Grunwald // Licensed under the terms of the "BSD License", see doc/license.txt using System; namespace Base { public interface IUndoHandler { bool CanUndo

itreelistviewitemcomparer.cs

using System; namespace System.Windows.Forms { /// /// Interface ITreeListViewItemComparer /// public interface ITreeListViewItemComparer : System.Collections.ICompare

basicplayerlistener.java

package javazoom.jlGui; /** * BasicPlayerListener. */ /** * BasicPlayerListener. * This interface defines method that a player should implement to be notify * from Audio events. * Ho

hibernateproxy.java

//$Id: HibernateProxy.java,v 1.3 2003/01/05 02:11:22 oneovthafew Exp $ package net.sf.hibernate.proxy; import java.io.Serializable; public interface HibernateProxy extends Serializable { public Obj

nameable.java

//$Id: Nameable.java,v 1.1.2.1 2003/11/08 02:25:29 oneovthafew Exp $ package org.hibernate.test; /** * */ public interface Nameable { public String getName(); public void setName(String name); p

named.java

//$Id: Named.java,v 1.1.2.1 2003/11/08 02:25:30 oneovthafew Exp $ package org.hibernate.test; public interface Named { public String getName(); }

newstypedao.java~3~

package com.victor.dao; import java.util.List; import com.victor.domain.NewsTypeActionForm; public interface NewsTypeDao { public List typeWarch(); public void insertTpye(NewsTypeActi

votedao.java~2~

package com.victor.dao; import java.util.List; import com.victor.domain.VoteActionForm; public interface VoteDao { public List selectVote(); public void insertVote(VoteActionForm vote); }

newstypedao.java~2~

package com.victor.dao; import java.util.List; public interface NewsTypeDao { //查看所有链接的类别名称 public List typeWarch(); }