/* * Licensed under the GNU Lesser General Public License Version 3 * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the license, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ // generated automatically - do not change module appstream.ValidatorIssue; private import gi.appstream; public import gi.appstreamtypes; private import glib.ConstructionException; private import glib.Str; private import gobject.ObjectG; /** */ public class ValidatorIssue : ObjectG { /** the main Gtk struct */ protected AsValidatorIssue* asValidatorIssue; /** Get the main Gtk struct */ public AsValidatorIssue* getValidatorIssueStruct() { return asValidatorIssue; } /** the main Gtk struct as a void* */ protected override void* getStruct() { return cast(void*)asValidatorIssue; } protected override void setStruct(GObject* obj) { asValidatorIssue = cast(AsValidatorIssue*)obj; super.setStruct(obj); } /** * Sets our main struct and passes it to the parent class. */ public this (AsValidatorIssue* asValidatorIssue, bool ownedRef = false) { this.asValidatorIssue = asValidatorIssue; super(cast(GObject*)asValidatorIssue, ownedRef); } /** */ public static GType getType() { return as_validator_issue_get_type(); } /** * Creates a new #AsValidatorIssue. * * Returns: a #AsValidatorIssue * * Throws: ConstructionException GTK+ fails to create the object. */ public this() { auto p = as_validator_issue_new(); if(p is null) { throw new ConstructionException("null returned by new"); } this(cast(AsValidatorIssue*) p, true); } /** * The component-id this issue is about. * * Returns: a component-id. */ public string getCid() { return Str.toString(as_validator_issue_get_cid(asValidatorIssue)); } /** * The name of the file this issue was found in. * * Returns: the filename */ public string getFilename() { return Str.toString(as_validator_issue_get_filename(asValidatorIssue)); } /** * Gets the importance of this issue. * * Returns: a #AsIssueImportance */ public AsIssueImportance getImportance() { return as_validator_issue_get_importance(asValidatorIssue); } /** * Gets the issue kind enum, if available. * * Returns: a #AsIssueKind */ public AsIssueKind getKind() { return as_validator_issue_get_kind(asValidatorIssue); } /** * Gets the line number where this issue was found. * * Returns: the line number where this issue occured, or -1 if unknown. */ public int getLine() { return as_validator_issue_get_line(asValidatorIssue); } /** * Builds a string containing all information about the location * where this issue occured that we know about. * * Returns: the location hint as string. */ public string getLocation() { auto retStr = as_validator_issue_get_location(asValidatorIssue); scope(exit) Str.freeString(retStr); return Str.toString(retStr); } /** * Gets the message for the issue. * * Returns: the message */ public string getMessage() { return Str.toString(as_validator_issue_get_message(asValidatorIssue)); } /** * Sets the component-id this issue is about. * * Params: * cid = a component-id. */ public void setCid(string cid) { as_validator_issue_set_cid(asValidatorIssue, Str.toStringz(cid)); } /** * Sets the name of the file the issue was found in. * * Params: * fname = the filename. */ public void setFilename(string fname) { as_validator_issue_set_filename(asValidatorIssue, Str.toStringz(fname)); } /** * Sets the importance for this issue. * * Params: * importance = the #AsIssueImportance. */ public void setImportance(AsIssueImportance importance) { as_validator_issue_set_importance(asValidatorIssue, importance); } /** * Sets the kind enum for this issue, if known. * * Params: * kind = the #AsIssueKind. */ public void setKind(AsIssueKind kind) { as_validator_issue_set_kind(asValidatorIssue, kind); } /** * Sets the importance for this issue. * * Params: * line = the line number. */ public void setLine(int line) { as_validator_issue_set_line(asValidatorIssue, line); } /** * Sets a message on the issue. * * Params: * message = the message text. */ public void setMessage(string message) { as_validator_issue_set_message(asValidatorIssue, Str.toStringz(message)); } }