Widget["ComboBox"] represents a combo box.
Widget["FileDialog"] represents an Open or Save dialog.
Here is an implementation of the J/Link RealTimePlotting example written with the GUIKit` package.
BlackBodyProfile[temp_1, temp_2, ...] generates a plot of black-body spectral distribution profiles at the specified temperatures temp_1, temp_2, ....
CompleteKPartiteGraph[a, b, c, ...] creates a complete k-partite graph of the prescribed shape, provided the k arguments a, b, c, ... are positive integers. An option Type ...
DeleteEdge[g, e] gives graph g minus e. If g is undirected, then e is treated as an undirected edge; otherwise it is treated as a directed edge. If there are multiple edges ...
IncidenceMatrix[g] returns the (0, 1)-matrix of graph g, which has a row for each vertex and a column for each edge and (v, e) = 1 if and only if vertex v is incident upon ...
RandomGraph[n, p] constructs a random labeled graph on n vertices with an edge probability of p.
ShortestPath[g, start, end] finds a shortest path between vertices start and end in graph g.
ShortestPathSpanningTree[g, v] constructs a shortest-path spanning tree rooted at v, so that a shortest path in graph g from v to any other vertex is a path in the tree.