blob: 25c0ab2f2b2abb881173ea11d7cb297bf5a9551f [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.printing;
/**
* Describes a class that can initiate the printing process.
*
* This interface helps decoupling Tab from the printing implementation and helps with testing.
*/
public interface Printable {
/** Start the PDF generation process. */
boolean print();
/** Get the title of the generated PDF document. */
String getTitle();
}