SearchFind components
Advanced Search
Simple Search Examples


Name
Calculator search for components that have the name
(i.e. are called) "Calculator".


try

String
"new BufferedReader" search for components that have the string "new BufferedReader"
some where within their source code.


try

Method name
method:push search for components that have a method named "push".

try

Language constraint
stack lang:java search for components named "Stack"
that are written in Java.


try

License constraint
license:gpl heapsort search for components named "heapsort"
that have string "gpl" in their license field
(i.e. that have been released under the GPL license).


try
Interface Search Examples


Functional Abstraction
random(float,float):float; search for components that are, or have, have an operation
called "random" accepting two float parameters
and returning a float value.
try
isLeapYear(int):boolean; search for components that are, or have, an operation
called "isLeapYear" accepting an integer parameter and
returning a Boolean value.
try
Object Abstraction
Customer(
getAddress():String;
setAddress(String):void;
) search for components named "Customer" that have two
operations, one named "getAddress" that takes no parameters and
returns a String and one named "setAddress" that takes a String
parameter but returns no value.
try
public class Matrix(
public Matrix add(Matrix);
public Matrix multiply(Matrix);
) search for components named "Matrix" that have two operations,
one named "add" that takes a single parameter of type Matrix
but returns no value and one named "multiply" that also takes a
single parameter of type Matrix but returns no value.
try
Lookup Examples


Module Lookup
java.util.Stack To locate the merobase details page for a class
simple type in its full name.
try
WebService Lookup
http://www.dneonline.com/calculator.asmx?wsdl To access the merobase details page for a web services
simply type in its URI.
try
JAR Lookup
findjar:org.apache.lucene.search.Query To locate a jar file containing a file simply
type in its full name after the
"findjar" constraint.
try
Javadoc Lookup
javadoc:java.util.Stack To locate the javadoc description for a class
simply type in its full name after the "javadoc"
constraint.
try