view src/com/tmate/hgkit/ll/HgTags.java @ 64:19e9e220bf68

Convenient commands constitute hi-level API. org.tmatesoft namespace, GPL2 statement
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 21 Jan 2011 05:56:43 +0100
parents f1db8610da62
children
line wrap: on
line source
/*
 * Copyright (c) 2011 Artem Tikhomirov 
 */
package com.tmate.hgkit.ll;

import java.util.Collections;
import java.util.List;

/**
 * FIXME Place-holder, implement
 * @author artem
 */
public class HgTags {

	public List<String> tags(Nodeid nid) {
		return Collections.emptyList();
	}

	public boolean isTagged(Nodeid nid) {
		// TODO implement
		return false;
	}
}