view src/com/tmate/hgkit/ll/HgTags.java @ 68:0e499fed9b3d

StatusCommand with tests. Extra constants to indicate common revision cases
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Sat, 22 Jan 2011 22:11:24 +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;
	}
}