Lines Matching defs:Spring

266     private Set<Spring> tmpParallelSet;
381 tmpParallelSet = new HashSet<Spring>();
1097 List<Spring> springs = group.springs;
1099 Spring spring = springs.get(counter);
1164 Spring sourceSpring;
1165 Spring targetSpring;
1173 Set<Spring> sourcePath = tmpParallelSet;
1175 Spring spring = sourceSpring.getParent();
1223 private void createSpringDescription(StringBuffer buffer, Spring spring,
1251 List<Spring> springs = ((Group)spring).springs;
1262 * Spring consists of a range: min, pref and max, a value some where in
1263 * the middle of that, and a location. Spring caches the
1267 private abstract class Spring {
1272 private Spring parent;
1276 Spring() {
1305 * Sets the parent of this Spring.
1307 void setParent(Spring parent) {
1314 Spring getParent() {
1325 * Alignment for this Spring, this may be null.
1366 * @param origin of this Spring
1367 * @param size of the Spring. If size is UNSET, this invokes
1412 * meant to quickly test if this Spring will always have a
1479 public abstract class Group extends Spring {
1482 List<Spring> springs;
1485 springs = new ArrayList<Spring>();
1553 Spring getSpring(int index) {
1557 int indexOf(Spring spring) {
1562 * Adds the Spring to the list of {@code Spring}s and returns
1565 Group addSpring(Spring spring) {
1576 // Spring methods
1633 int getSpringSize(Spring spring, int axis, int type) {
1686 Spring spring = springs.get(counter);
1703 Spring spring = springs.get(counter);
1714 Spring spring = springs.get(counter);
1730 Spring spring = springs.get(i);
1759 private Spring baselineSpring;
2020 for (Spring spring : springs) {
2026 Spring spring = getSpring(0);
2061 // How much we would like to give each Spring.
2078 // Spring didn't take all the space, reset how much
2088 Spring spring = getSpring(counter);
2097 Spring spring = getSpring(counter);
2121 Spring spring = getSpring(counter);
2141 Spring spring = springs.get(index);
2167 Spring spring = getSpring(counter);
2204 // Spring is a Component, make it the target of any
2218 // Last Spring, add it to trailing
2221 // Not that last Spring, add it to leading
2261 for (Spring spring : springs) {
2276 // Spring to use for baseline isn't resizable. In this case
2280 for (Spring spring : springs) {
2290 Spring spring = springs.get(i);
2309 for (Spring spring : springs) {
2319 Spring spring = springs.get(i);
2580 for (Spring spring : springs) {
2585 void setChildSize(Spring spring, int axis, int origin, int size) {
2614 for (Spring spring : springs) {
2652 * constituent {@code Spring}s along the baseline.
2729 for (Spring spring : springs) {
2766 for (Spring spring : springs) {
2808 for (Spring spring : springs) {
2866 for (Spring spring : springs) {
2933 private final class ComponentSpring extends Spring {
3070 Spring horizontalSpring = getComponentInfo(component).
3108 * Spring representing the preferred distance between two components.
3110 private class PreferredGapSpring extends Spring {
3165 * Spring represented a certain amount of space.
3167 private class GapSpring extends Spring {
3205 * Spring reprensenting the distance between any number of sources and
3210 private class AutoPreferredGapSpring extends Spring {
3625 private void removeSpring(Spring spring) {