代码搜索:Component
找到约 10,000 项符合「Component」的源代码
代码结果 10,000
www.eeworm.com/read/136828/5844789
java component.java
package com.javapatterns.composite;
public interface Component {
Composite getComposite();
void sampleOperation();
}
www.eeworm.com/read/136828/5845151
java component.java
package com.javapatterns.decorator.simplified2;
public interface Component {
void sampleOperation();
}
www.eeworm.com/read/136828/5845165
java component.java
package com.javapatterns.decorator;
public interface Component
{
void sampleOperation();
}
www.eeworm.com/read/136828/5845248
java component.java
package com.javapatterns.bridge.peer;
abstract public class Component {
/**
* @link aggregation
* @directed
*/
private ComponentPeer lnkComponentPeer;
}
www.eeworm.com/read/128813/5979099
cpp component.cpp
// Component.cpp
//
#include
#include "Component.hxx"
Component::Component() {
my_widget = (Widget)NULL;
}
www.eeworm.com/read/128813/5979101
hxx component.hxx
// Component.hxx
//
// This is the super class for Label, Button, and Text
//
#ifndef Component__hxx
#define Component__hxx
#include
class Component {
public:
Component();
vir
www.eeworm.com/read/128370/5991300
sln component.sln
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Component", "Component.vbproj", "{104E613E-7B97-4E01-A1CA-A101E8BBEC8A}"
EndProject
P
www.eeworm.com/read/128370/5991305
sln component.sln
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Component", "Component.vbproj", "{104E613E-7B97-4E01-A1CA-A101E8BBEC8A}"
EndProject
G