All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.plantuml.hcl.HclSource Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.hcl;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

public class HclSource implements Iterable {
    // ::remove folder when __HAXE__

	final private List all = new ArrayList<>();

	public void add(String line) {
		if (line.trim().startsWith("#"))
			return;
		for (char c : line.toCharArray())
			all.add(c);
	}

	@Override
	public Iterator iterator() {
		return Collections.unmodifiableList(all).iterator();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy