The second createList is now createListWithType which takes the type of
the list as the first argument.
refs #7390
Change-Id: I8b52f792cb683bfc764ecd7a53bfb9b0c76b4d5f
}
/**
- * Creates a list containing the givens {@code elements}.
+ * Creates a list containing the given {@code elements}.
*/
public static Resource create(WriteGraph g, Iterable<Resource> elements) throws DatabaseException {
Layer0 L0 = Layer0.getInstance(g);
}
/**
- * Creates a list containing the givens {@code elements}.
+ * Creates a list of the given list type containing the given {@code elements}.
*/
public static Resource create(WriteGraph g, Resource type, Iterable<Resource> elements) throws DatabaseException {
Layer0 L0 = Layer0.getInstance(g);
createList :: [Resource] -> <WriteGraph> Resource
@JavaName create
- createList :: Resource -> [Resource] -> <WriteGraph> Resource
+ createListWithType :: Resource -> [Resource] -> <WriteGraph> Resource
@javaName insertBack
insertBack :: Resource -> [Resource] -> <WriteGraph> ()