Browse Source

added a new test and the corresponding test data

hg/35a367e65a464cf6cdf277c73f977a6828b723fe/bookmarks/master
Martin Monperrus 15 years ago
parent
commit
953612929c
  1. 0
      test/00_parser.php
  2. 86
      test/01_output.php
  3. 43
      test/output/033981dc0e063ed7f5003ba7ea05eedc.html
  4. 89
      test/output/03fb25137cdb797acfbe13e927ce41ce.html
  5. 38
      test/output/16162487c2271877973423daff5222d6.html
  6. 38
      test/output/31721507999c0fb567513d8d51d99c31.html
  7. 24
      test/output/357e491edfc8fde4daae7117d9164366.html
  8. 39
      test/output/36916793e4585f7a22196db21e2724fb.html
  9. 32
      test/output/3aa649bbc342c5918188229f2205dc1d.html
  10. 1388
      test/output/4c4c65636d50fa083859c4101a3f88dc.html
  11. 81
      test/output/4cd4dec945a0966623128fe8dfe9b10e.html
  12. 36
      test/output/57379f4d9506be7cd75de2f83219e84f.html
  13. 39
      test/output/632abba2651d0c76144a55419914682d.html
  14. 31
      test/output/6aa2be53f96f320ff9d9d6a152eda0f8.html
  15. 337
      test/output/6d99d602a3271c529e8dd56e0e39fdfc.html
  16. 56
      test/output/7927fcd8654efc9521cae97590ac1e7b.html
  17. 15
      test/output/8fd675bda5bb61c211f3695a6ea6a38b.html
  18. 24
      test/output/982dbdb9aaff28b153228d3d6b01a406.html
  19. 30
      test/output/b4155fdd8a001ff84fed76fdff701bff.html
  20. 219
      test/output/d4428dcf3da7c71cd6477294a6c93a14.html
  21. 38
      test/output/edeaf42415d65bf6708bafa6396c7824.html

0
test/update-test-data.php → test/00_parser.php

86
test/01_output.php

@ -0,0 +1,86 @@
<?
// loading bibtexbrowser
$_GET['test']=1;
define('BIBTEXBROWSER_SCRIPT',dirname(__FILE__).'/../bibtexbrowser.php');
include(BIBTEXBROWSER_SCRIPT);
// to simulate a normal web call
$_SERVER['SCRIPT_FILENAME'] = realpath(BIBTEXBROWSER_SCRIPT);
$bib = dirname(__FILE__).'/input/metrics.bib';
$url=array(
//'no bibfile as parameted' => '',
'menu view' => 'bib='.$bib.'&menu',
'all view' => 'bib='.$bib.'&all',
'book view' => 'bib='.$bib.'&type=book',
'year view' => 'bib='.$bib.'&year=2004',
'author view' => 'bib='.$bib.'&author=Victor+R.+Basili',
'non existent author' => 'bib='.$bib.'&author=Victor+R.+Basilis', //
'key view' => 'bib='.$bib.'&key=Basili1996',
'key view tech report' => 'key=SMACCHIA.COM2006&bib='.$bib.'',
'key view book' => 'key=Kan95a&bib='.$bib.'',
//'nonexistent key' => 'bib='.$bib.'&key=Basili1996s', //
'keyword view' => 'bib='.$bib.'&keywords=components',
'search view' => 'bib='.$bib.'&search=ocl',
'multisearch with or parameter ' => 'bib='.$bib.'&author=Martin+Monperrus&type=article|incollection',//
'multisearch with exclude and author' => 'bib='.$bib.'&exclude=workshop&author=Martin+Monperrus',//
'multisearch with author and search' => 'bib='.$bib.'&author=Martin+Monperrus&search=workshop',//
'all & academic view' => 'bib='.$bib.'&all&academic',//
'author & academic view' => 'bib='.$bib.'&author=Martin+Monperrus&academic',//
'author & academic view (deprecated)' => 'bib='.$bib.'&academic=Martin+Monperrus',//
//'the default view with frameset' => 'bib='.$bib.'',//
'RSS feed all' => 'bib='.$bib.'&all&rss',
'RSS feed author' => 'bib='.$bib.'&author=Martin+Monperrus&rss',
/*'included in another page all' => $base.'bibtexbrowser-test-include1.php',
'included in another page all/academic' => $base.'bibtexbrowser-test-include2.php',
'included in another page author' => $base.'bibtexbrowser-test-include3.php',
'included in another page author/academic' => $base.'bibtexbrowser-test-include4.php',
'included no bib file' => $base.'bibtexbrowser-test-include5.php',
'Test Library and IndependentYearMenu' => $base.'bibtexbrowser-test-include6.php',
'include and key' => $base.'bibtexbrowser-test-include7.php',
'all view' => 'bib=../bib/strings.bib;../bib/entries.bib&all'*/
);
// checking if XML (XHTML) is correct
foreach($url as $desc => $query_string) {
parse_str($query_string, $_GET);
//echo var_export($_GET);
$_SERVER['HTTP_HOST']='localhost';
$_SERVER['SERVER_PORT']='80';
$_SERVER['REQUEST_URI']=$query_string;
ob_start();
$db = new Dispatcher();
$data = ob_get_clean();
if (!preg_match('/<.xml/',$data)) {
$data = '<?xml version="1.0" encoding="'.ENCODING.'"?>'.$data;
};
file_put_contents(dirname(__FILE__).'/output/'.md5($query_string).".html", $data);
//echo "<a href=\"${x}\">${desc}</a>: ";
//echo "<pre>".htmlentities($data)."</pre>";
// true is really important
$xmlparser = xml_parser_create('ISO-8859-1');
if (xml_parse($xmlparser,$data,true) == 1) {
echo "-- ".$query_string."\n";
}
else {
echo "XX ".$query_string."\n";
echo " ".md5($data).".html\n";
echo xml_error_string ( xml_get_error_code ( $xmlparser ))."<br/>";
echo xml_get_current_line_number ( $xmlparser )."<br/>";
echo xml_get_current_column_number ( $xmlparser )."<br/>";
}
}
?>

43
test/output/033981dc0e063ed7f5003ba7ea05eedc.html

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<meta name="citation_title" content="A Validation of Object-Oriented Design Metrics as Quality Indicators"/>
<meta name="citation_authors" content="Basili, Victor R.; Briand, Lionel C.; Melo, Walcélio L."/>
<meta name="citation_author" content="Basili, Victor R."/>
<meta name="citation_author" content="Briand, Lionel C."/>
<meta name="citation_author" content="Melo, Walcélio L."/>
<meta name="citation_date" content="1996"/>
<meta name="citation_abstract_html_url" content="http://localhostbib=/var/www/bibtexbrowser/test/input/metrics.bib&amp;key=Basili1996"/>
<meta name="citation_journal_title" content="IEEE Trans. Softw. Eng."/>
<meta name="citation_volume" content="22"/>
<meta name="citation_issue" content="0098-5589"/>
<meta name="citation_doi" content="10.1109/32.544352"/>
<meta name="DC.Title" content="A Validation of Object-Oriented Design Metrics as Quality Indicators"/>
<meta name="DC.Creator" content="Basili, Victor R."/>
<meta name="DC.Creator" content="Briand, Lionel C."/>
<meta name="DC.Creator" content="Melo, Walcélio L."/>
<meta name="DC.Date" content="1996"/>
<title>A Validation of Object-Oriented Design Metrics as Quality Indicators (bibtex)</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Validation+of+Object-Oriented+Design+Metrics+as+Quality+Indicators&amp;rft.jtitle=IEEE+Trans.+Softw.+Eng.&amp;rft.volume=22&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2F32.544352&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Victor+R.+Basili&amp;rft.au=Lionel+C.+Briand&amp;rft.au=Walc%C3%A9lio+L.+Melo"></span><div class="rheader">A Validation of Object-Oriented Design Metrics as Quality Indicators (bibtex)</div>
<pre class="purebibtex">@ARTICLE{Basili1996,
author = {Victor R. Basili and Lionel C. Briand and Walcélio L. Melo},
title = {A Validation of Object-Oriented Design Metrics as Quality Indicators},
journal = {IEEE Trans. Softw. Eng.},
year = {1996},
volume = {22},
pages = {751--761},
number = {10},
doi = {10.1109/32.544352},
issn = {0098-5589}
}</pre>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

89
test/output/03fb25137cdb797acfbe13e927ce41ce.html

@ -0,0 +1,89 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?type=%5Ebook%24&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Type: Book</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Type: Book <a href="bibtexbrowser.php?type=%5Ebook%24&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2003</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="17"></a>[17]</td> <td class="bibitem">Metrotrade Project, Regmet Project, <a href="http://www.euromet.org/docs/pubs/docs/Metrology_in_short_2nd_edition_may_2004.pdf">"Metrology - in short"</a>, European Association of National Metrology Institutes, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Metrology+-+in+short&amp;rft.genre=book&amp;rft.pub=European+Association+of+National+Metrology+Institutes&amp;rft_id=http%3A%2F%2Fwww.euromet.org%2Fdocs%2Fpubs%2Fdocs%2FMetrology_in_short_2nd_edition_may_2004.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Metrotrade+Project&amp;rft.au=Regmet+Project"></span> <a class="biburl" title="Metrotrade2003" href="bibtexbrowser.php?key=Metrotrade2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.euromet.org/docs/pubs/docs/Metrology_in_short_2nd_edition_may_2004.pdf">[pdf]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2001</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="16"></a>[16]</td> <td class="bibitem">ISO/IEC, "ISO/IEC 9126. Software engineering -- Product quality", ISO/IEC, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=ISO%2FIEC+9126.+Software+engineering+--+Product+quality&amp;rft.genre=book&amp;rft.pub=ISO%2FIEC&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=ISO%2FIEC"></span> <a class="biburl" title="ISOIEC9126" href="bibtexbrowser.php?key=ISOIEC9126&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1996</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="15"></a>[15]</td> <td class="bibitem">Brian Henderson-Sellers, "Object-Oriented Metrics, measures of complexity", Prentice Hall, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Object-Oriented+Metrics%2C+measures+of+complexity&amp;rft.genre=book&amp;rft.pub=Prentice+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Brian+Henderson-Sellers"></span> <a class="biburl" title="Henderson-Sellers:96" href="bibtexbrowser.php?key=Henderson-Sellers%3A96&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1995</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="14"></a>[14]</td> <td class="bibitem">Kevin Pulford, Annie Kuntzmann-Combelles, Stephen Shirlaw, "A quantitative approach to software management: the AMI handbook", Addison-Wesley Longman Publishing Co., Inc., Boston, MA, USA, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=A+quantitative+approach+to+software+management%3A+the+AMI+handbook&amp;rft.genre=book&amp;rft.pub=Addison-Wesley+Longman+Publishing+Co.%2C+Inc.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Kevin+Pulford&amp;rft.au=Annie+Kuntzmann-Combelles&amp;rft.au=Stephen+Shirlaw"></span> <a class="biburl" title="ami95" href="bibtexbrowser.php?key=ami95&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="13"></a>[13]</td> <td class="bibitem">Stephen H. Kan, "Metrics and Models in Software Quality Engineering", Addison Wesley, Reading, MA, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Metrics+and+Models+in+Software+Quality+Engineering&amp;rft.genre=book&amp;rft.pub=Addison+Wesley&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Stephen+H.+Kan"></span> <a class="biburl" title="Kan95a" href="bibtexbrowser.php?key=Kan95a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1994</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="12"></a>[12]</td> <td class="bibitem">B. Henderson-Sellers, J. M. Edwards, "BOOKTWO of Object-Oriented Knowledge: The Working Object", Prentice Hall, 1994.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=BOOKTWO+of+Object-Oriented+Knowledge%3A+The+Working+Object&amp;rft.genre=book&amp;rft.pub=Prentice+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1994&amp;rft.au=B.+Henderson-Sellers&amp;rft.au=J.+M.+Edwards"></span> <a class="biburl" title="henderson:edwards:94" href="bibtexbrowser.php?key=henderson%3Aedwards%3A94&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1993</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="11"></a>[11]</td> <td class="bibitem">C. Jones, "Software Productivity and Quality Today: The Worldwide Perspective", Carlsbad, Calif.: IS Management Group, 1993.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Productivity+and+Quality+Today%3A+The+Worldwide+Perspective&amp;rft.genre=book&amp;rft.pub=Carlsbad%2C+Calif.%3A+IS+Management+Group&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1993&amp;rft.au=C.+Jones"></span> <a class="biburl" title="jones1993" href="bibtexbrowser.php?key=jones1993&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="10"></a>[10]</td> <td class="bibitem">CEI, ISO, "International vocabulary of basic and general terms in metrology = vocabulaire international des termes fondamentaux et généraux de métrologie", International Organisation for Standardization, 1993.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=International+vocabulary+of+basic+and+general+terms+in+metrology+%3D+vocabulaire+international+des+termes+fondamentaux+et+g%C3%A9n%C3%A9raux+de+m%C3%A9trologie&amp;rft.genre=book&amp;rft.pub=International+Organisation+for+Standardization&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1993&amp;rft.au=CEI&amp;rft.au=ISO"></span> <a class="biburl" title="CEI1993" href="bibtexbrowser.php?key=CEI1993&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1992</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="9"></a>[9]</td> <td class="bibitem">Robert B. Grady, "Practical software metrics for project management and process improvement", Prentice-Hall, Inc., 1992.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Practical+software+metrics+for+project+management+and+process+improvement&amp;rft.genre=book&amp;rft.pub=Prentice-Hall%2C+Inc.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1992&amp;rft.au=Robert+B.+Grady"></span> <a class="biburl" title="Grady1992" href="bibtexbrowser.php?key=Grady1992&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1991</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="8"></a>[8]</td> <td class="bibitem">Horst Zuse, "Software Complexity", Walter de Gruyter, Berlin, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Complexity&amp;rft.genre=book&amp;rft.pub=Walter+de+Gruyter&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=Horst+Zuse"></span> <a class="biburl" title="zuse1991" href="bibtexbrowser.php?key=zuse1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="7"></a>[7]</td> <td class="bibitem">N. E. Fenton, "Software Metrics: A Rigorous Approach", Chapman and Hall, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Metrics%3A+A+Rigorous+Approach&amp;rft.genre=book&amp;rft.pub=Chapman+and+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=N.+E.+Fenton"></span> <a class="biburl" title="fenton:1991" href="bibtexbrowser.php?key=fenton%3A1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="6"></a>[6]</td> <td class="bibitem">C. Jones, "Applied software measurement: assuring productivity and quality", McGraw-Hill, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Applied+software+measurement%3A+assuring+productivity+and+quality&amp;rft.genre=book&amp;rft.pub=McGraw-Hill&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=C.+Jones"></span> <a class="biburl" title="Jones1991" href="bibtexbrowser.php?key=Jones1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1987</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="5"></a>[5]</td> <td class="bibitem">Robert B. Grady, Deborah L. Caswell, "Software metrics: establishing a company-wide program", Prentice-Hall, Inc., 1987.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+metrics%3A+establishing+a+company-wide+program&amp;rft.genre=book&amp;rft.pub=Prentice-Hall%2C+Inc.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1987&amp;rft.au=Robert+B.+Grady&amp;rft.au=Deborah+L.+Caswell"></span> <a class="biburl" title="Grady1987" href="bibtexbrowser.php?key=Grady1987&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1986</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="4"></a>[4]</td> <td class="bibitem">C. Jones, "Programming Productivity", McGraw-Hill, 1986.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Programming+Productivity&amp;rft.genre=book&amp;rft.pub=McGraw-Hill&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1986&amp;rft.au=C.+Jones"></span> <a class="biburl" title="jones86" href="bibtexbrowser.php?key=jones86&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1981</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="3"></a>[3]</td> <td class="bibitem">A. Perlis, F. Sayward, M. Shaw, "Software Metrics", MIT, 1981.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Metrics&amp;rft.genre=book&amp;rft.pub=MIT&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1981&amp;rft.au=A.+Perlis&amp;rft.au=F.+Sayward&amp;rft.au=M.+Shaw"></span> <a class="biburl" title="software-metrics" href="bibtexbrowser.php?key=software-metrics&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2"></a>[2]</td> <td class="bibitem">Barry W. Boehm, "Software Engineering Economics", Prentice Hall, Englewood Cliffs, NJ, 1981.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Engineering+Economics&amp;rft.genre=book&amp;rft.pub=Prentice+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1981&amp;rft.au=Barry+W.+Boehm"></span> <a class="biburl" title="SEeconomics" href="bibtexbrowser.php?key=SEeconomics&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1971</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">D.H. Krantz, R.D. Luce, P. Suppes, A. Tversky, "Foundations of measurement", Academic Press, New York, 1971.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Foundations+of+measurement&amp;rft.genre=book&amp;rft.pub=Academic+Press&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1971&amp;rft.au=D.H.+Krantz&amp;rft.au=R.D.+Luce&amp;rft.au=P.+Suppes&amp;rft.au=A.+Tversky"></span> <a class="biburl" title="Krantz" href="bibtexbrowser.php?key=Krantz&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

38
test/output/16162487c2271877973423daff5222d6.html

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<title>Publications of Martin Monperrus</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Publications of Martin Monperrus <a href="bibtexbrowser.php?_author=Martin+Monperrus&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<div class="header">Refereed Articles and Book Chapters</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">"Measuring Models"</a>, <i>Chapter in Model-Driven Software Development: Integrating Quality Assurance</i>, IDEA Group, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Model-Driven+Software+Development%3A+Integrating+Quality+Assurance&amp;rft.atitle=Measuring+Models&amp;rft.genre=bookitem&amp;rft.pub=IDEA+Group&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FMeasuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08b" href="bibtexbrowser.php?key=monperrus08b&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">[pdf]</a></td></tr>
</table>
<div class="header">Refereed Conference Papers</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">"A Model-driven Measurement Approach"</a>, <i>In Proceedings of the ACM/IEEE 11th International Conference on Model Driven Engineering Languages and Systems (MODELS'2008)</i>, 2008. (acceptance rate: 58/274)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Model-driven+Measurement+Approach&amp;rft.btitle=Proceedings+of+the+ACM%2FIEEE+11th+International+Conference+on+Model+Driven+Engineering+Languages+and+Systems+%28MODELS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FA-Model-Driven-Measurement-Approach.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08d" href="bibtexbrowser.php?key=monperrus08d&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">"Model-driven Engineering Metrics for Real Time Systems"</a>, <i>In Proceedings of the 4th European Congress on Embedded Real Time Software (ERTS'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model-driven+Engineering+Metrics+for+Real+Time+Systems&amp;rft.btitle=Proceedings+of+the+4th+European+Congress+on+Embedded+Real+Time+Software+%28ERTS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FModel-driven_Engineering_Metrics_for_Real_Time_Systems.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08a" href="bibtexbrowser.php?key=monperrus08a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">[pdf]</a></td></tr>
</table>
<div class="header">Refereed Workshop Papers</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">Martin Monperrus, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Counts_Count.pdf">"Counts Count"</a>, <i>In Proceedings of the 2nd Workshop on Model Size Metrics (MSM'07) co-located with MODELS'2007</i>, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Counts+Count&amp;rft.btitle=Proceedings+of+the+2nd+Workshop+on+Model+Size+Metrics+%28MSM%2707%29+co-located+with+MODELS%272007&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FCounts_Count.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Martin+Monperrus&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus07" href="bibtexbrowser.php?key=monperrus07&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Counts_Count.pdf">[pdf]</a></td></tr>
</table>
<div class="header">Other Publications</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">"La mesure des modèles par les modèles : une approche générative"</a>, PhD thesis, Université de Rennes, 2008. (Advisor: JM. Jézéquel; Examiners: H. Sahraoui, S. Ducasse)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=La+mesure+des+mod%C3%A8les+par+les+mod%C3%A8les+%3A+une+approche+g%C3%A9n%C3%A9rative&amp;rft.genre=report&amp;rft.pub=Universit%C3%A9+de+Rennes&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2Fla-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus"></span> <a class="biburl" title="monperrus08phd" href="bibtexbrowser.php?key=monperrus08phd&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">[pdf]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

38
test/output/31721507999c0fb567513d8d51d99c31.html

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<title>Publications of Martin Monperrus</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Publications of Martin Monperrus <a href="bibtexbrowser.php?author=Martin+Monperrus&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<div class="header">Refereed Articles and Book Chapters</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">"Measuring Models"</a>, <i>Chapter in Model-Driven Software Development: Integrating Quality Assurance</i>, IDEA Group, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Model-Driven+Software+Development%3A+Integrating+Quality+Assurance&amp;rft.atitle=Measuring+Models&amp;rft.genre=bookitem&amp;rft.pub=IDEA+Group&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FMeasuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08b" href="bibtexbrowser.php?key=monperrus08b&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">[pdf]</a></td></tr>
</table>
<div class="header">Refereed Conference Papers</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">"A Model-driven Measurement Approach"</a>, <i>In Proceedings of the ACM/IEEE 11th International Conference on Model Driven Engineering Languages and Systems (MODELS'2008)</i>, 2008. (acceptance rate: 58/274)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Model-driven+Measurement+Approach&amp;rft.btitle=Proceedings+of+the+ACM%2FIEEE+11th+International+Conference+on+Model+Driven+Engineering+Languages+and+Systems+%28MODELS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FA-Model-Driven-Measurement-Approach.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08d" href="bibtexbrowser.php?key=monperrus08d&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">"Model-driven Engineering Metrics for Real Time Systems"</a>, <i>In Proceedings of the 4th European Congress on Embedded Real Time Software (ERTS'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model-driven+Engineering+Metrics+for+Real+Time+Systems&amp;rft.btitle=Proceedings+of+the+4th+European+Congress+on+Embedded+Real+Time+Software+%28ERTS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FModel-driven_Engineering_Metrics_for_Real_Time_Systems.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08a" href="bibtexbrowser.php?key=monperrus08a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">[pdf]</a></td></tr>
</table>
<div class="header">Refereed Workshop Papers</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">Martin Monperrus, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Counts_Count.pdf">"Counts Count"</a>, <i>In Proceedings of the 2nd Workshop on Model Size Metrics (MSM'07) co-located with MODELS'2007</i>, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Counts+Count&amp;rft.btitle=Proceedings+of+the+2nd+Workshop+on+Model+Size+Metrics+%28MSM%2707%29+co-located+with+MODELS%272007&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FCounts_Count.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Martin+Monperrus&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus07" href="bibtexbrowser.php?key=monperrus07&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Counts_Count.pdf">[pdf]</a></td></tr>
</table>
<div class="header">Other Publications</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">"La mesure des modèles par les modèles : une approche générative"</a>, PhD thesis, Université de Rennes, 2008. (Advisor: JM. Jézéquel; Examiners: H. Sahraoui, S. Ducasse)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=La+mesure+des+mod%C3%A8les+par+les+mod%C3%A8les+%3A+une+approche+g%C3%A9n%C3%A9rative&amp;rft.genre=report&amp;rft.pub=Universit%C3%A9+de+Rennes&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2Fla-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus"></span> <a class="biburl" title="monperrus08phd" href="bibtexbrowser.php?key=monperrus08phd&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">[pdf]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

24
test/output/357e491edfc8fde4daae7117d9164366.html

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?_author=Martin+Monperrus&amp;search=workshop&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Publications of Martin Monperrus &amp; Search: Workshop</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Publications of Martin Monperrus &amp; Search: Workshop <a href="bibtexbrowser.php?_author=Martin+Monperrus&amp;search=workshop&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2007</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">Martin Monperrus, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Counts_Count.pdf">"Counts Count"</a>, <i>In Proceedings of the 2nd Workshop on Model Size Metrics (MSM'07) co-located with MODELS'2007</i>, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Counts+Count&amp;rft.btitle=Proceedings+of+the+2nd+Workshop+on+Model+Size+Metrics+%28MSM%2707%29+co-located+with+MODELS%272007&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FCounts_Count.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Martin+Monperrus&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus07" href="bibtexbrowser.php?key=monperrus07&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Counts_Count.pdf">[pdf]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

39
test/output/36916793e4585f7a22196db21e2724fb.html

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?keywords=components&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Keywords: Components</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Keywords: Components <a href="bibtexbrowser.php?keywords=components&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2005</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="4"></a>[4]</td> <td class="bibitem">Sajjad Mahmood, Richard Lai, "Measuring the Complexity of a UML Component Specification", <i>In QSIC '05: Proceedings of the Fifth International Conference on Quality Software</i>, IEEE Computer Society, Washington, DC, USA, pp. 150-160, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+the+Complexity+of+a+UML+Component+Specification&amp;rft.btitle=QSIC+%2705%3A+Proceedings+of+the+Fifth+International+Conference+on+Quality+Software&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rft_id=info%3Adoi%2F10.1109%2FQSIC.2005.39&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Sajjad+Mahmood&amp;rft.au=Richard+Lai"></span> <a class="biburl" title="Mahmood2005" href="bibtexbrowser.php?key=Mahmood2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/QSIC.2005.39">[doi]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2004</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="3"></a>[3]</td> <td class="bibitem">V. L. Narasimhan, B. Hendradjaya, "Component Integration Metrics", <i>In Proceedings of the International Conference on Software Engineering Research and Practice (SERP'04)</i>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Component+Integration+Metrics&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Software+Engineering+Research+and+Practice+%28SERP%2704%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=V.+L.+Narasimhan&amp;rft.au=B.+Hendradjaya"></span> <a class="biburl" title="Narasimhan2004" href="bibtexbrowser.php?key=Narasimhan2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2003</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="2"></a>[2]</td> <td class="bibitem">N. S. Gill, P. S. Grover, "Component-based measurement: few useful guidelines", <i>In SIGSOFT Softw. Eng. Notes</i>, ACM, vol. 28, no. 6, pp. 4-4, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Component-based+measurement%3A+few+useful+guidelines&amp;rft.jtitle=SIGSOFT+Softw.+Eng.+Notes&amp;rft.volume=28&amp;rft.issue=&amp;rft.pub=ACM&amp;rft_id=info%3Adoi%2F10.1145%2F966221.966237&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=N.+S.+Gill&amp;rft.au=P.+S.+Grover"></span> <a class="biburl" title="Gill2003" href="bibtexbrowser.php?key=Gill2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1145/966221.966237">[doi]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2001</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">Eun Sook Cho, Min Sun Kim, Soo Dong Kim, "Component Metrics to Measure Component Quality", <i>In Proceedings of the 8th Asia-Pacific on Software Engineering Conference (APSEC'01)</i>, IEEE Computer Society, pp. 419, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Component+Metrics+to+Measure+Component+Quality&amp;rft.btitle=Proceedings+of+the+8th+Asia-Pacific+on+Software+Engineering+Conference+%28APSEC%2701%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=Eun+Sook+Cho&amp;rft.au=Min+Sun+Kim&amp;rft.au=Soo+Dong+Kim"></span> <a class="biburl" title="Cho2001" href="bibtexbrowser.php?key=Cho2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

32
test/output/3aa649bbc342c5918188229f2205dc1d.html

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<meta name="citation_title" content="Metrics and Models in Software Quality Engineering"/>
<meta name="citation_authors" content="Kan, Stephen H."/>
<meta name="citation_author" content="Kan, Stephen H."/>
<meta name="citation_date" content="1995"/>
<meta name="citation_abstract_html_url" content="http://localhostkey=Kan95a&amp;bib=/var/www/bibtexbrowser/test/input/metrics.bib"/>
<meta name="citation_publisher" content="Addison Wesley"/>
<meta name="DC.Title" content="Metrics and Models in Software Quality Engineering"/>
<meta name="DC.Creator" content="Kan, Stephen H."/>
<meta name="DC.Date" content="1995"/>
<title>Metrics and Models in Software Quality Engineering (bibtex)</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Metrics+and+Models+in+Software+Quality+Engineering&amp;rft.genre=book&amp;rft.pub=Addison+Wesley&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Stephen+H.+Kan"></span><div class="rheader">Metrics and Models in Software Quality Engineering (bibtex)</div>
<pre class="purebibtex">@BOOK{Kan95a,
title = {Metrics and Models in Software Quality Engineering},
publisher = {Addison Wesley},
year = {1995},
author = {Stephen H. Kan},
address = {Reading, MA}
}</pre>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

1388
test/output/4c4c65636d50fa083859c4101a3f88dc.html
File diff suppressed because it is too large
View File

81
test/output/4cd4dec945a0966623128fe8dfe9b10e.html

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?all=1&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Publications in /var/www/bibtexbrowser/test/input/metrics.bib</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Publications in /var/www/bibtexbrowser/test/input/metrics.bib <a href="bibtexbrowser.php?all=1&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div><div class="menu"><center><b>[1]</b><a href="?all=1&amp;result=2&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[2]</a><a href="?all=1&amp;result=3&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[3]</a><a href="?all=1&amp;result=4&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[4]</a><a href="?all=1&amp;result=5&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[5]</a><a href="?all=1&amp;result=6&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[6]</a><a href="?all=1&amp;result=7&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[7]</a></center></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2009</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="153"></a>[153]</td> <td class="bibitem">Miroslaw Staron, Wilhelm Meding, Christer Nilsson, "A framework for developing measurement systems and its industrial evaluation", <i>In Information and Software Technology</i>, vol. 51, pp. 721-737, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+framework+for+developing+measurement+systems+and+its+industrial+evaluation&amp;rft.jtitle=Information+and+Software+Technology&amp;rft.volume=51&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2009&amp;rft.au=Miroslaw+Staron&amp;rft.au=Wilhelm+Meding&amp;rft.au=Christer+Nilsson"></span> <a class="biburl" title="Staron2009" href="bibtexbrowser.php?key=Staron2009&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="152"></a>[152]</td> <td class="bibitem">Esther Guerra, Juan de Lara, Alessio Malizia, Paloma Díaz, "Supporting user-oriented analysis for multi-view domain-specific visual languages", <i>In Information and Software Technology</i>, vol. 51, pp. 769-784, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Supporting+user-oriented+analysis+for+multi-view+domain-specific+visual+languages&amp;rft.jtitle=Information+and+Software+Technology&amp;rft.volume=51&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2009&amp;rft.au=Esther+Guerra&amp;rft.au=Juan+de+Lara&amp;rft.au=Alessio+Malizia&amp;rft.au=Paloma+D%C3%ADaz"></span> <a class="biburl" title="Guerra2009" href="bibtexbrowser.php?key=Guerra2009&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="151"></a>[151]</td> <td class="bibitem">Félix García, Francisco Ruiz, Coral Calero, Manuel F. Bertoa, Antonio Vallecillo, Beatriz Mora, Mario Piattini, "Effective use of ontologies in software measurement", <i>In The Knowledge Engineering Review</i>, vol. 24, pp. 23-40, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Effective+use+of+ontologies+in+software+measurement&amp;rft.jtitle=The+Knowledge+Engineering+Review&amp;rft.volume=24&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2009&amp;rft.au=F%C3%A9lix+Garc%C3%ADa&amp;rft.au=Francisco+Ruiz&amp;rft.au=Coral+Calero&amp;rft.au=Manuel+F.+Bertoa&amp;rft.au=Antonio+Vallecillo&amp;rft.au=Beatriz+Mora&amp;rft.au=Mario+Piattini"></span> <a class="biburl" title="Garcia2009" href="bibtexbrowser.php?key=Garcia2009&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2008</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="150"></a>[150]</td> <td class="bibitem">Martin Monperrus, <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">"La mesure des modèles par les modèles : une approche générative"</a>, PhD thesis, Université de Rennes, 2008. (Advisor: JM. Jézéquel; Examiners: H. Sahraoui, S. Ducasse)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=La+mesure+des+mod%C3%A8les+par+les+mod%C3%A8les+%3A+une+approche+g%C3%A9n%C3%A9rative&amp;rft.genre=report&amp;rft.pub=Universit%C3%A9+de+Rennes&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2Fla-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus"></span> <a class="biburl" title="monperrus08phd" href="bibtexbrowser.php?key=monperrus08phd&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="149"></a>[149]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">"A Model-driven Measurement Approach"</a>, <i>In Proceedings of the ACM/IEEE 11th International Conference on Model Driven Engineering Languages and Systems (MODELS'2008)</i>, 2008. (acceptance rate: 58/274)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Model-driven+Measurement+Approach&amp;rft.btitle=Proceedings+of+the+ACM%2FIEEE+11th+International+Conference+on+Model+Driven+Engineering+Languages+and+Systems+%28MODELS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FA-Model-Driven-Measurement-Approach.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08d" href="bibtexbrowser.php?key=monperrus08d&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="148"></a>[148]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">"Measuring Models"</a>, <i>Chapter in Model-Driven Software Development: Integrating Quality Assurance</i>, IDEA Group, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Model-Driven+Software+Development%3A+Integrating+Quality+Assurance&amp;rft.atitle=Measuring+Models&amp;rft.genre=bookitem&amp;rft.pub=IDEA+Group&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FMeasuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08b" href="bibtexbrowser.php?key=monperrus08b&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="147"></a>[147]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">"Model-driven Engineering Metrics for Real Time Systems"</a>, <i>In Proceedings of the 4th European Congress on Embedded Real Time Software (ERTS'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model-driven+Engineering+Metrics+for+Real+Time+Systems&amp;rft.btitle=Proceedings+of+the+4th+European+Congress+on+Embedded+Real+Time+Software+%28ERTS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FModel-driven_Engineering_Metrics_for_Real_Time_Systems.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08a" href="bibtexbrowser.php?key=monperrus08a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="146"></a>[146]</td> <td class="bibitem">Beatriz Mora, Mario Piattini, Francisco Ruiz, Felix Garcia, "SMML: Software Measurement Modeling Language", <i>In Proceedings of the 8th Workshop on Domain-Specific Modeling (DSM'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=SMML%3A+Software+Measurement+Modeling+Language&amp;rft.btitle=Proceedings+of+the+8th+Workshop+on+Domain-Specific+Modeling+%28DSM%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Beatriz+Mora&amp;rft.au=Mario+Piattini&amp;rft.au=Francisco+Ruiz&amp;rft.au=Felix+Garcia"></span> <a class="biburl" title="Mora2008a" href="bibtexbrowser.php?key=Mora2008a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="145"></a>[145]</td> <td class="bibitem">Beatriz Mora, Félix Garcia, Francisco Ruiz, Mario Piattini, Artur Boronat, Abel Gómez, José Á. Carsí, Isidro Ramos, "Software measurement by using QVT transformations in an MDA context", <i>In Proceedings of the International Conference on Enterprise Information Systems (ICEIS'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Software+measurement+by+using+QVT+transformations+in+an+MDA+context&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Enterprise+Information+Systems+%28ICEIS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Beatriz+Mora&amp;rft.au=F%C3%A9lix+Garcia&amp;rft.au=Francisco+Ruiz&amp;rft.au=Mario+Piattini&amp;rft.au=Artur+Boronat&amp;rft.au=Abel+G%C3%B3mez&amp;rft.au=Jos%C3%A9+%C3%81.+Cars%C3%AD&amp;rft.au=Isidro+Ramos"></span> <a class="biburl" title="Mora2008" href="bibtexbrowser.php?key=Mora2008&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="144"></a>[144]</td> <td class="bibitem">Rüdiger Lincke, Jonas Lundberg, Welf Löwe, "Comparing Software Metric Tools", <i>In Proceedings of the 2008 international Symposium on Software Testing and Analysis (ISSTA'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Comparing+Software+Metric+Tools&amp;rft.btitle=Proceedings+of+the+2008+international+Symposium+on+Software+Testing+and+Analysis+%28ISSTA%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=R%C3%BCdiger+Lincke&amp;rft.au=Jonas+Lundberg&amp;rft.au=Welf+L%C3%B6we"></span> <a class="biburl" title="Lincke2008" href="bibtexbrowser.php?key=Lincke2008&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2007</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="143"></a>[143]</td> <td class="bibitem">Martin Monperrus, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Counts_Count.pdf">"Counts Count"</a>, <i>In Proceedings of the 2nd Workshop on Model Size Metrics (MSM'07) co-located with MODELS'2007</i>, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Counts+Count&amp;rft.btitle=Proceedings+of+the+2nd+Workshop+on+Model+Size+Metrics+%28MSM%2707%29+co-located+with+MODELS%272007&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FCounts_Count.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Martin+Monperrus&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus07" href="bibtexbrowser.php?key=monperrus07&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Counts_Count.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="142"></a>[142]</td> <td class="bibitem">The International Software Benchmarking Standards Group, "ISBSG Repositories", 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=ISBSG+Repositories&amp;rft.genre=report&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=The+International+Software+Benchmarking+Standards+Group"></span> <a class="biburl" title="isbsg" href="bibtexbrowser.php?key=isbsg&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="141"></a>[141]</td> <td class="bibitem">S. Sarkar, G. M. Rama, A. C. Kak, "API-Based and Information-Theoretic Metrics for Measuring the Quality of Software Modularization", <i>In IEEE Transactions on Software Engineering</i>, vol. 33, pp. 14-32, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=API-Based+and+Information-Theoretic+Metrics+for+Measuring+the+Quality+of+Software+Modularization&amp;rft.jtitle=IEEE+Transactions+on+Software+Engineering&amp;rft.volume=33&amp;rft.issue=1&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=S.+Sarkar&amp;rft.au=G.+M.+Rama&amp;rft.au=A.+C.+Kak"></span> <a class="biburl" title="apibased" href="bibtexbrowser.php?key=apibased&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="140"></a>[140]</td> <td class="bibitem">Wang Yu-ying, Li Qing-shan, Chen Ping, Ren Chun-de, "Dynamic fan-in and fan-out metrics for program comprehension", <i>In Journal of Shanghai University</i>, vol. 11, no. 5, pp. 474-479, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Dynamic+fan-in+and+fan-out+metrics+for+program+comprehension&amp;rft.jtitle=Journal+of+Shanghai+University&amp;rft.volume=11&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1007%2Fs11741-007-0507-2&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Wang+Yu-ying&amp;rft.au=Li+Qing-shan&amp;rft.au=Chen+Ping&amp;rft.au=Ren+Chun-de"></span> <a class="biburl" title="Yu-ying2007" href="bibtexbrowser.php?key=Yu-ying2007&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1007/s11741-007-0507-2">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="139"></a>[139]</td> <td class="bibitem">Esther Guerra, Juan de Lara, Paloma Díaz, "Visual specification of measurements and redesigns for domain specific visual languages", <i>In Journal of Visual Languages and Computing</i>, vol. in Press, pp. 1-27, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Visual+specification+of+measurements+and+redesigns+for+domain+specific+visual+languages&amp;rft.jtitle=Journal+of+Visual+Languages+and+Computing&amp;rft.volume=in+Press&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1016%2Fj.jvlc.2007.09.002&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Esther+Guerra&amp;rft.au=Juan+de+Lara&amp;rft.au=Paloma+D%C3%ADaz"></span> <a class="biburl" title="Guerra2007" href="bibtexbrowser.php?key=Guerra2007&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1016/j.jvlc.2007.09.002">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="138"></a>[138]</td> <td class="bibitem">Félix Garcia, M. Serrano, J. Cruz-Lemus, F. Ruiz, M. Piattini, "Managing software process measurement: A metamodel-based approach", <i>In Inf. Sci.</i>, Elsevier Science Inc., vol. 177, no. 12, pp. 2570-2586, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Managing+software+process+measurement%3A+A+metamodel-based+approach&amp;rft.jtitle=Inf.+Sci.&amp;rft.volume=177&amp;rft.issue=&amp;rft.pub=Elsevier+Science+Inc.&amp;rft_id=info%3Adoi%2F10.1016%2Fj.ins.2007.01.018&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=F%C3%A9lix+Garcia&amp;rft.au=M.+Serrano&amp;rft.au=J.+Cruz-Lemus&amp;rft.au=F.+Ruiz&amp;rft.au=M.+Piattini"></span> <a class="biburl" title="Garcia2007" href="bibtexbrowser.php?key=Garcia2007&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1016/j.ins.2007.01.018">[doi]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2006</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="137"></a>[137]</td> <td class="bibitem">Frank Weil, Andrij Neczwid, Kent Farbelow, "Model Size Metrics Research in Motorola", <i>In Proceedings of the Model Size Metrics workshop at Models'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model+Size+Metrics+Research+in+Motorola&amp;rft.btitle=Proceedings+of+the+Model+Size+Metrics+workshop+at+Models%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Frank+Weil&amp;rft.au=Andrij+Neczwid&amp;rft.au=Kent+Farbelow"></span> <a class="biburl" title="weil2006" href="bibtexbrowser.php?key=weil2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="136"></a>[136]</td> <td class="bibitem">Harald Störrle, "On different notions of model size", <i>In Proceedings of the Model Size Metrics workshop at Models'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=On+different+notions+of+model+size&amp;rft.btitle=Proceedings+of+the+Model+Size+Metrics+workshop+at+Models%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Harald+St%C3%B6rrle"></span> <a class="biburl" title="stoerrle2006" href="bibtexbrowser.php?key=stoerrle2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="135"></a>[135]</td> <td class="bibitem">SDMetrics, <a href="http://www.sdmetrics.com/">"The Software Design Metrics tool for the UML (http://www.sdmetrics.com/)"</a>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=The+Software+Design+Metrics+tool+for+the+UML+%28http%3A%2F%2Fwww.sdmetrics.com%2F%29&amp;rft.genre=report&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.sdmetrics.com%2F&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=SDMetrics"></span> <a class="biburl" title="sdmetrics" href="bibtexbrowser.php?key=sdmetrics&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.sdmetrics.com/">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="134"></a>[134]</td> <td class="bibitem">Esther Guerra, Paloma Diaz, Juan de Lara, "Visual Specification of Metrics for Domain Specific Visual Languages", <i>In Graph Transformation and Visual Modeling Techniques (GT-VMT 2006)</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Visual+Specification+of+Metrics+for+Domain+Specific+Visual+Languages&amp;rft.btitle=Graph+Transformation+and+Visual+Modeling+Techniques+%28GT-VMT+2006%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Esther+Guerra&amp;rft.au=Paloma+Diaz&amp;rft.au=Juan+de+Lara"></span> <a class="biburl" title="guerra2006" href="bibtexbrowser.php?key=guerra2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="133"></a>[133]</td> <td class="bibitem">Eric Vépa, Jean Bézivin, Hugo Brunelière, Frédéric Jouault, "Measuring Model Repositories", <i>In Proceedings of the 1st Workshop on Model Size Metrics (MSM'06) co-located with MoDELS'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+Model+Repositories&amp;rft.btitle=Proceedings+of+the+1st+Workshop+on+Model+Size+Metrics+%28MSM%2706%29+co-located+with+MoDELS%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Eric+V%C3%A9pa&amp;rft.au=Jean+B%C3%A9zivin&amp;rft.au=Hugo+Bruneli%C3%A8re&amp;rft.au=Fr%C3%A9d%C3%A9ric+Jouault"></span> <a class="biburl" title="Vepa2006" href="bibtexbrowser.php?key=Vepa2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="132"></a>[132]</td> <td class="bibitem">Motoshi Saeki, Haruhiko Kaiya, "Model Metrics and Metrics of Model Transformation", <i>In Proc. of 1st Workshop on Quality in Modeling</i>, pp. 31-45, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model+Metrics+and+Metrics+of+Model+Transformation&amp;rft.btitle=Proc.+of+1st+Workshop+on+Quality+in+Modeling&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Motoshi+Saeki&amp;rft.au=Haruhiko+Kaiya"></span> <a class="biburl" title="Saeki2006" href="bibtexbrowser.php?key=Saeki2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="131"></a>[131]</td> <td class="bibitem">Smacchia S.A., "Code Query Language 1.5 Specification", Technical report, Smacchia S.A., 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Code+Query+Language+1.5+Specification&amp;rft.genre=report&amp;rft.pub=Smacchia+S.A.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Smacchia+S.A."></span> <a class="biburl" title="SMACCHIA.COM2006" href="bibtexbrowser.php?key=SMACCHIA.COM2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="130"></a>[130]</td> <td class="bibitem">Modelware Project, "D2.7 MDD Business Metrics", Technical report, Framework Programme Information Society Technologies, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=D2.7+MDD+Business+Metrics&amp;rft.genre=report&amp;rft.pub=Framework+Programme+Information+Society+Technologies&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Modelware+Project"></span> <a class="biburl" title="ModelwareD2.7" href="bibtexbrowser.php?key=ModelwareD2.7&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="129"></a>[129]</td> <td class="bibitem">Modelware Project, "D2.5 MDD Engineering Metrics Baseline", Technical report, Framework Programme Information Society Technologies, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=D2.5+MDD+Engineering+Metrics+Baseline&amp;rft.genre=report&amp;rft.pub=Framework+Programme+Information+Society+Technologies&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Modelware+Project"></span> <a class="biburl" title="ModelwareD2.5" href="bibtexbrowser.php?key=ModelwareD2.5&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div class="menu"><center><b>[1]</b><a href="?all=1&amp;result=2&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[2]</a><a href="?all=1&amp;result=3&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[3]</a><a href="?all=1&amp;result=4&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[4]</a><a href="?all=1&amp;result=5&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[5]</a><a href="?all=1&amp;result=6&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[6]</a><a href="?all=1&amp;result=7&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[7]</a></center></div>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

36
test/output/57379f4d9506be7cd75de2f83219e84f.html

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?_author=Victor+R.+Basili&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Publications of Victor R. Basili</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Publications of Victor R. Basili <a href="bibtexbrowser.php?_author=Victor+R.+Basili&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">1996</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="4"></a>[4]</td> <td class="bibitem">Lionel C. Briand, Sandro Morasca, Victor R. Basili, "Property-Based Software Engineering Measurement", <i>In Software Engineering</i>, vol. 22, no. 1, pp. 68-86, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Property-Based+Software+Engineering+Measurement&amp;rft.jtitle=Software+Engineering&amp;rft.volume=22&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Lionel+C.+Briand&amp;rft.au=Sandro+Morasca&amp;rft.au=Victor+R.+Basili"></span> <a class="biburl" title="briand96propertybased" href="bibtexbrowser.php?key=briand96propertybased&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="3"></a>[3]</td> <td class="bibitem">Victor R. Basili, Lionel C. Briand, Walcélio L. Melo, "A Validation of Object-Oriented Design Metrics as Quality Indicators", <i>In IEEE Trans. Softw. Eng.</i>, vol. 22, no. 10, pp. 751-761, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Validation+of+Object-Oriented+Design+Metrics+as+Quality+Indicators&amp;rft.jtitle=IEEE+Trans.+Softw.+Eng.&amp;rft.volume=22&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2F32.544352&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Victor+R.+Basili&amp;rft.au=Lionel+C.+Briand&amp;rft.au=Walc%C3%A9lio+L.+Melo"></span> <a class="biburl" title="Basili1996" href="bibtexbrowser.php?key=Basili1996&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/32.544352">[doi]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1994</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="2"></a>[2]</td> <td class="bibitem">Victor R. Basili, Gianluigi Caldiera, H. Dieter Rombach, "The Goal Question Metric Approach", <i>Chapter in Encyclopedia of Software Engineering</i>, Wiley, 1994.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Encyclopedia+of+Software+Engineering&amp;rft.atitle=The+Goal+Question+Metric+Approach&amp;rft.genre=bookitem&amp;rft.pub=Wiley&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1994&amp;rft.au=Victor+R.+Basili&amp;rft.au=Gianluigi+Caldiera&amp;rft.au=H.+Dieter+Rombach"></span> <a class="biburl" title="gqm" href="bibtexbrowser.php?key=gqm&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">1984</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">Victor R. Basili, David M. Weiss, "A Methodology for Collecting Valid Software Engineering Data.", <i>In IEEE Trans. Software Eng.</i>, vol. 10, no. 6, pp. 728-738, 1984.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Methodology+for+Collecting+Valid+Software+Engineering+Data.&amp;rft.jtitle=IEEE+Trans.+Software+Eng.&amp;rft.volume=10&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1984&amp;rft.au=Victor+R.+Basili&amp;rft.au=David+M.+Weiss"></span> <a class="biburl" title="BasiliW84" href="bibtexbrowser.php?key=BasiliW84&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

39
test/output/632abba2651d0c76144a55419914682d.html

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?search=ocl&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Search: Ocl</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Search: Ocl <a href="bibtexbrowser.php?search=ocl&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2006</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="4"></a>[4]</td> <td class="bibitem">Jordi Cabot, Ernest Teniente, "A metric for measuring the complexity of OCL expressions", <i>In Model Size Metrics Workshop co-located with MODELS'06</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+metric+for+measuring+the+complexity+of+OCL+expressions&amp;rft.btitle=Model+Size+Metrics+Workshop+co-located+with+MODELS%2706&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Jordi+Cabot&amp;rft.au=Ernest+Teniente"></span> <a class="biburl" title="Cabot2006" href="bibtexbrowser.php?key=Cabot2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2005</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="3"></a>[3]</td> <td class="bibitem">N. Debnath, D. Riesco, G. Montejano, R. Uzal, L. Baigorria, A. Dasso, A. Funes, "A technique based on the OMG metamodel and OCL for the definition of object-oriented metrics applied to UML models", <i>In Proceedings of the ACS/IEEE 2005 International Conference on Computer Systems and Applications (AICCSA'05)</i>, IEEE Computer Society, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+technique+based+on+the+OMG+metamodel+and+OCL+for+the+definition+of+object-oriented+metrics+applied+to+UML+models&amp;rft.btitle=Proceedings+of+the+ACS%2FIEEE+2005+International+Conference+on+Computer+Systems+and+Applications+%28AICCSA%2705%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=N.+Debnath&amp;rft.au=D.+Riesco&amp;rft.au=G.+Montejano&amp;rft.au=R.+Uzal&amp;rft.au=L.+Baigorria&amp;rft.au=A.+Dasso&amp;rft.au=A.+Funes"></span> <a class="biburl" title="Debnath2005" href="bibtexbrowser.php?key=Debnath2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2003</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="2"></a>[2]</td> <td class="bibitem">Luis Reynoso, Marcela Genero, Mario Piattini, <a href="http://www-ctp.di.fct.unl.pt/QUASAR/QAOOSE2003/papers/OCLM-QAOOSE03.pdf">"Measuring OCL expressions: a "tracing"-based approach"</a>, <i>In Proceedings of QAOOSE'2003</i>, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+OCL+expressions%3A+a+%22tracing%22-based+approach&amp;rft.btitle=Proceedings+of+QAOOSE%272003&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww-ctp.di.fct.unl.pt%2FQUASAR%2FQAOOSE2003%2Fpapers%2FOCLM-QAOOSE03.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Luis+Reynoso&amp;rft.au=Marcela+Genero&amp;rft.au=Mario+Piattini"></span> <a class="biburl" title="Reynoso2003" href="bibtexbrowser.php?key=Reynoso2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www-ctp.di.fct.unl.pt/QUASAR/QAOOSE2003/papers/OCLM-QAOOSE03.pdf">[pdf]</a></td></tr>
<tr class="date">
<td colspan="2" class="header">2002</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">A. Baroni, S. Braz, F. Abreu, "Using OCL to Formalize Object-Oriented Design Metrics Definitions", <i>In ECOOP'02 Workshop on Quantitative Approaches in OO Software Engineering</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Using+OCL+to+Formalize+Object-Oriented+Design+Metrics+Definitions&amp;rft.btitle=ECOOP%2702+Workshop+on+Quantitative+Approaches+in+OO+Software+Engineering&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=A.+Baroni&amp;rft.au=S.+Braz&amp;rft.au=F.+Abreu"></span> <a class="biburl" title="baroni02" href="bibtexbrowser.php?key=baroni02&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

31
test/output/6aa2be53f96f320ff9d9d6a152eda0f8.html

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<meta name="citation_title" content="Code Query Language 1.5 Specification"/>
<meta name="citation_authors" content="S.A., Smacchia"/>
<meta name="citation_author" content="S.A., Smacchia"/>
<meta name="citation_date" content="2006"/>
<meta name="citation_abstract_html_url" content="http://localhostkey=SMACCHIA.COM2006&amp;bib=/var/www/bibtexbrowser/test/input/metrics.bib"/>
<meta name="citation_technical_report_institution" content="Smacchia S.A."/>
<meta name="DC.Title" content="Code Query Language 1.5 Specification"/>
<meta name="DC.Creator" content="S.A., Smacchia"/>
<meta name="DC.Date" content="2006"/>
<title>Code Query Language 1.5 Specification (bibtex)</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Code+Query+Language+1.5+Specification&amp;rft.genre=report&amp;rft.pub=Smacchia+S.A.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Smacchia+S.A."></span><div class="rheader">Code Query Language 1.5 Specification (bibtex)</div>
<pre class="purebibtex">@TECHREPORT{SMACCHIA.COM2006,
author = {{Smacchia S.A.}},
title = {Code Query Language 1.5 Specification},
institution = {{Smacchia S.A.}},
year = {2006}
}</pre>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

337
test/output/6d99d602a3271c529e8dd56e0e39fdfc.html

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<title>Publications in /var/www/bibtexbrowser/test/input/metrics.bib</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Publications in /var/www/bibtexbrowser/test/input/metrics.bib <a href="bibtexbrowser.php?all=1&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<div class="header">Books</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">Metrotrade Project, Regmet Project, <a href="http://www.euromet.org/docs/pubs/docs/Metrology_in_short_2nd_edition_may_2004.pdf">"Metrology - in short"</a>, European Association of National Metrology Institutes, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Metrology+-+in+short&amp;rft.genre=book&amp;rft.pub=European+Association+of+National+Metrology+Institutes&amp;rft_id=http%3A%2F%2Fwww.euromet.org%2Fdocs%2Fpubs%2Fdocs%2FMetrology_in_short_2nd_edition_may_2004.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Metrotrade+Project&amp;rft.au=Regmet+Project"></span> <a class="biburl" title="Metrotrade2003" href="bibtexbrowser.php?key=Metrotrade2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.euromet.org/docs/pubs/docs/Metrology_in_short_2nd_edition_may_2004.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">ISO/IEC, "ISO/IEC 9126. Software engineering -- Product quality", ISO/IEC, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=ISO%2FIEC+9126.+Software+engineering+--+Product+quality&amp;rft.genre=book&amp;rft.pub=ISO%2FIEC&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=ISO%2FIEC"></span> <a class="biburl" title="ISOIEC9126" href="bibtexbrowser.php?key=ISOIEC9126&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1996"></a>[1996]</td> <td class="bibitem">Brian Henderson-Sellers, "Object-Oriented Metrics, measures of complexity", Prentice Hall, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Object-Oriented+Metrics%2C+measures+of+complexity&amp;rft.genre=book&amp;rft.pub=Prentice+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Brian+Henderson-Sellers"></span> <a class="biburl" title="Henderson-Sellers:96" href="bibtexbrowser.php?key=Henderson-Sellers%3A96&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1995"></a>[1995]</td> <td class="bibitem">Kevin Pulford, Annie Kuntzmann-Combelles, Stephen Shirlaw, "A quantitative approach to software management: the AMI handbook", Addison-Wesley Longman Publishing Co., Inc., Boston, MA, USA, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=A+quantitative+approach+to+software+management%3A+the+AMI+handbook&amp;rft.genre=book&amp;rft.pub=Addison-Wesley+Longman+Publishing+Co.%2C+Inc.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Kevin+Pulford&amp;rft.au=Annie+Kuntzmann-Combelles&amp;rft.au=Stephen+Shirlaw"></span> <a class="biburl" title="ami95" href="bibtexbrowser.php?key=ami95&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1995"></a>[1995]</td> <td class="bibitem">Stephen H. Kan, "Metrics and Models in Software Quality Engineering", Addison Wesley, Reading, MA, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Metrics+and+Models+in+Software+Quality+Engineering&amp;rft.genre=book&amp;rft.pub=Addison+Wesley&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Stephen+H.+Kan"></span> <a class="biburl" title="Kan95a" href="bibtexbrowser.php?key=Kan95a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1994"></a>[1994]</td> <td class="bibitem">B. Henderson-Sellers, J. M. Edwards, "BOOKTWO of Object-Oriented Knowledge: The Working Object", Prentice Hall, 1994.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=BOOKTWO+of+Object-Oriented+Knowledge%3A+The+Working+Object&amp;rft.genre=book&amp;rft.pub=Prentice+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1994&amp;rft.au=B.+Henderson-Sellers&amp;rft.au=J.+M.+Edwards"></span> <a class="biburl" title="henderson:edwards:94" href="bibtexbrowser.php?key=henderson%3Aedwards%3A94&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1993"></a>[1993]</td> <td class="bibitem">C. Jones, "Software Productivity and Quality Today: The Worldwide Perspective", Carlsbad, Calif.: IS Management Group, 1993.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Productivity+and+Quality+Today%3A+The+Worldwide+Perspective&amp;rft.genre=book&amp;rft.pub=Carlsbad%2C+Calif.%3A+IS+Management+Group&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1993&amp;rft.au=C.+Jones"></span> <a class="biburl" title="jones1993" href="bibtexbrowser.php?key=jones1993&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1993"></a>[1993]</td> <td class="bibitem">CEI, ISO, "International vocabulary of basic and general terms in metrology = vocabulaire international des termes fondamentaux et généraux de métrologie", International Organisation for Standardization, 1993.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=International+vocabulary+of+basic+and+general+terms+in+metrology+%3D+vocabulaire+international+des+termes+fondamentaux+et+g%C3%A9n%C3%A9raux+de+m%C3%A9trologie&amp;rft.genre=book&amp;rft.pub=International+Organisation+for+Standardization&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1993&amp;rft.au=CEI&amp;rft.au=ISO"></span> <a class="biburl" title="CEI1993" href="bibtexbrowser.php?key=CEI1993&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1992"></a>[1992]</td> <td class="bibitem">Robert B. Grady, "Practical software metrics for project management and process improvement", Prentice-Hall, Inc., 1992.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Practical+software+metrics+for+project+management+and+process+improvement&amp;rft.genre=book&amp;rft.pub=Prentice-Hall%2C+Inc.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1992&amp;rft.au=Robert+B.+Grady"></span> <a class="biburl" title="Grady1992" href="bibtexbrowser.php?key=Grady1992&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1991"></a>[1991]</td> <td class="bibitem">Horst Zuse, "Software Complexity", Walter de Gruyter, Berlin, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Complexity&amp;rft.genre=book&amp;rft.pub=Walter+de+Gruyter&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=Horst+Zuse"></span> <a class="biburl" title="zuse1991" href="bibtexbrowser.php?key=zuse1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1991"></a>[1991]</td> <td class="bibitem">N. E. Fenton, "Software Metrics: A Rigorous Approach", Chapman and Hall, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Metrics%3A+A+Rigorous+Approach&amp;rft.genre=book&amp;rft.pub=Chapman+and+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=N.+E.+Fenton"></span> <a class="biburl" title="fenton:1991" href="bibtexbrowser.php?key=fenton%3A1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1991"></a>[1991]</td> <td class="bibitem">C. Jones, "Applied software measurement: assuring productivity and quality", McGraw-Hill, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Applied+software+measurement%3A+assuring+productivity+and+quality&amp;rft.genre=book&amp;rft.pub=McGraw-Hill&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=C.+Jones"></span> <a class="biburl" title="Jones1991" href="bibtexbrowser.php?key=Jones1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1987"></a>[1987]</td> <td class="bibitem">Robert B. Grady, Deborah L. Caswell, "Software metrics: establishing a company-wide program", Prentice-Hall, Inc., 1987.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+metrics%3A+establishing+a+company-wide+program&amp;rft.genre=book&amp;rft.pub=Prentice-Hall%2C+Inc.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1987&amp;rft.au=Robert+B.+Grady&amp;rft.au=Deborah+L.+Caswell"></span> <a class="biburl" title="Grady1987" href="bibtexbrowser.php?key=Grady1987&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1986"></a>[1986]</td> <td class="bibitem">C. Jones, "Programming Productivity", McGraw-Hill, 1986.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Programming+Productivity&amp;rft.genre=book&amp;rft.pub=McGraw-Hill&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1986&amp;rft.au=C.+Jones"></span> <a class="biburl" title="jones86" href="bibtexbrowser.php?key=jones86&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1981"></a>[1981]</td> <td class="bibitem">A. Perlis, F. Sayward, M. Shaw, "Software Metrics", MIT, 1981.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Metrics&amp;rft.genre=book&amp;rft.pub=MIT&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1981&amp;rft.au=A.+Perlis&amp;rft.au=F.+Sayward&amp;rft.au=M.+Shaw"></span> <a class="biburl" title="software-metrics" href="bibtexbrowser.php?key=software-metrics&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1981"></a>[1981]</td> <td class="bibitem">Barry W. Boehm, "Software Engineering Economics", Prentice Hall, Englewood Cliffs, NJ, 1981.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Engineering+Economics&amp;rft.genre=book&amp;rft.pub=Prentice+Hall&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1981&amp;rft.au=Barry+W.+Boehm"></span> <a class="biburl" title="SEeconomics" href="bibtexbrowser.php?key=SEeconomics&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1971"></a>[1971]</td> <td class="bibitem">D.H. Krantz, R.D. Luce, P. Suppes, A. Tversky, "Foundations of measurement", Academic Press, New York, 1971.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Foundations+of+measurement&amp;rft.genre=book&amp;rft.pub=Academic+Press&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1971&amp;rft.au=D.H.+Krantz&amp;rft.au=R.D.+Luce&amp;rft.au=P.+Suppes&amp;rft.au=A.+Tversky"></span> <a class="biburl" title="Krantz" href="bibtexbrowser.php?key=Krantz&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div class="header">Refereed Articles and Book Chapters</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2009"></a>[2009]</td> <td class="bibitem">Miroslaw Staron, Wilhelm Meding, Christer Nilsson, "A framework for developing measurement systems and its industrial evaluation", <i>In Information and Software Technology</i>, vol. 51, pp. 721-737, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+framework+for+developing+measurement+systems+and+its+industrial+evaluation&amp;rft.jtitle=Information+and+Software+Technology&amp;rft.volume=51&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2009&amp;rft.au=Miroslaw+Staron&amp;rft.au=Wilhelm+Meding&amp;rft.au=Christer+Nilsson"></span> <a class="biburl" title="Staron2009" href="bibtexbrowser.php?key=Staron2009&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2009"></a>[2009]</td> <td class="bibitem">Esther Guerra, Juan de Lara, Alessio Malizia, Paloma Díaz, "Supporting user-oriented analysis for multi-view domain-specific visual languages", <i>In Information and Software Technology</i>, vol. 51, pp. 769-784, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Supporting+user-oriented+analysis+for+multi-view+domain-specific+visual+languages&amp;rft.jtitle=Information+and+Software+Technology&amp;rft.volume=51&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2009&amp;rft.au=Esther+Guerra&amp;rft.au=Juan+de+Lara&amp;rft.au=Alessio+Malizia&amp;rft.au=Paloma+D%C3%ADaz"></span> <a class="biburl" title="Guerra2009" href="bibtexbrowser.php?key=Guerra2009&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2009"></a>[2009]</td> <td class="bibitem">Félix García, Francisco Ruiz, Coral Calero, Manuel F. Bertoa, Antonio Vallecillo, Beatriz Mora, Mario Piattini, "Effective use of ontologies in software measurement", <i>In The Knowledge Engineering Review</i>, vol. 24, pp. 23-40, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Effective+use+of+ontologies+in+software+measurement&amp;rft.jtitle=The+Knowledge+Engineering+Review&amp;rft.volume=24&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2009&amp;rft.au=F%C3%A9lix+Garc%C3%ADa&amp;rft.au=Francisco+Ruiz&amp;rft.au=Coral+Calero&amp;rft.au=Manuel+F.+Bertoa&amp;rft.au=Antonio+Vallecillo&amp;rft.au=Beatriz+Mora&amp;rft.au=Mario+Piattini"></span> <a class="biburl" title="Garcia2009" href="bibtexbrowser.php?key=Garcia2009&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">"Measuring Models"</a>, <i>Chapter in Model-Driven Software Development: Integrating Quality Assurance</i>, IDEA Group, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Model-Driven+Software+Development%3A+Integrating+Quality+Assurance&amp;rft.atitle=Measuring+Models&amp;rft.genre=bookitem&amp;rft.pub=IDEA+Group&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FMeasuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08b" href="bibtexbrowser.php?key=monperrus08b&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">S. Sarkar, G. M. Rama, A. C. Kak, "API-Based and Information-Theoretic Metrics for Measuring the Quality of Software Modularization", <i>In IEEE Transactions on Software Engineering</i>, vol. 33, pp. 14-32, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=API-Based+and+Information-Theoretic+Metrics+for+Measuring+the+Quality+of+Software+Modularization&amp;rft.jtitle=IEEE+Transactions+on+Software+Engineering&amp;rft.volume=33&amp;rft.issue=1&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=S.+Sarkar&amp;rft.au=G.+M.+Rama&amp;rft.au=A.+C.+Kak"></span> <a class="biburl" title="apibased" href="bibtexbrowser.php?key=apibased&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">Wang Yu-ying, Li Qing-shan, Chen Ping, Ren Chun-de, "Dynamic fan-in and fan-out metrics for program comprehension", <i>In Journal of Shanghai University</i>, vol. 11, no. 5, pp. 474-479, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Dynamic+fan-in+and+fan-out+metrics+for+program+comprehension&amp;rft.jtitle=Journal+of+Shanghai+University&amp;rft.volume=11&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1007%2Fs11741-007-0507-2&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Wang+Yu-ying&amp;rft.au=Li+Qing-shan&amp;rft.au=Chen+Ping&amp;rft.au=Ren+Chun-de"></span> <a class="biburl" title="Yu-ying2007" href="bibtexbrowser.php?key=Yu-ying2007&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1007/s11741-007-0507-2">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">Esther Guerra, Juan de Lara, Paloma Díaz, "Visual specification of measurements and redesigns for domain specific visual languages", <i>In Journal of Visual Languages and Computing</i>, vol. in Press, pp. 1-27, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Visual+specification+of+measurements+and+redesigns+for+domain+specific+visual+languages&amp;rft.jtitle=Journal+of+Visual+Languages+and+Computing&amp;rft.volume=in+Press&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1016%2Fj.jvlc.2007.09.002&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Esther+Guerra&amp;rft.au=Juan+de+Lara&amp;rft.au=Paloma+D%C3%ADaz"></span> <a class="biburl" title="Guerra2007" href="bibtexbrowser.php?key=Guerra2007&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1016/j.jvlc.2007.09.002">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">Félix Garcia, M. Serrano, J. Cruz-Lemus, F. Ruiz, M. Piattini, "Managing software process measurement: A metamodel-based approach", <i>In Inf. Sci.</i>, Elsevier Science Inc., vol. 177, no. 12, pp. 2570-2586, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Managing+software+process+measurement%3A+A+metamodel-based+approach&amp;rft.jtitle=Inf.+Sci.&amp;rft.volume=177&amp;rft.issue=&amp;rft.pub=Elsevier+Science+Inc.&amp;rft_id=info%3Adoi%2F10.1016%2Fj.ins.2007.01.018&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=F%C3%A9lix+Garcia&amp;rft.au=M.+Serrano&amp;rft.au=J.+Cruz-Lemus&amp;rft.au=F.+Ruiz&amp;rft.au=M.+Piattini"></span> <a class="biburl" title="Garcia2007" href="bibtexbrowser.php?key=Garcia2007&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1016/j.ins.2007.01.018">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Félix Garcia, Manuel F. Bertoa, Coral Calero, Antonio Vallecillo, Francisco Ruiz, Mario Piattini, Marcela Genero, "Towards a consistent terminology for software measurement", <i>In Information and Software Technology</i>, vol. 48, no. 8, pp. 631-644, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Towards+a+consistent+terminology+for+software+measurement&amp;rft.jtitle=Information+and+Software+Technology&amp;rft.volume=48&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1016%2Fj.infsof.2005.07.001&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=F%C3%A9lix+Garcia&amp;rft.au=Manuel+F.+Bertoa&amp;rft.au=Coral+Calero&amp;rft.au=Antonio+Vallecillo&amp;rft.au=Francisco+Ruiz&amp;rft.au=Mario+Piattini&amp;rft.au=Marcela+Genero"></span> <a class="biburl" title="Garcia2006" href="bibtexbrowser.php?key=Garcia2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1016/j.infsof.2005.07.001">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Luigi Lavazza, Alberto Agostini, <a href="http://www.jot.fm/issues/issue_2005_05/article2">"Automated Measurement of UML Models: an open toolset approach"</a>, <i>In Journal of Object Technology</i>, vol. 4, no. 4, pp. 115-134, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Automated+Measurement+of+UML+Models%3A+an+open+toolset+approach&amp;rft.jtitle=Journal+of+Object+Technology&amp;rft.volume=4&amp;rft.issue=&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.jot.fm%2Fissues%2Fissue_2005_05%2Farticle2&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Luigi+Lavazza&amp;rft.au=Alberto+Agostini"></span> <a class="biburl" title="Lavazza2005" href="bibtexbrowser.php?key=Lavazza2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.jot.fm/issues/issue_2005_05/article2">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Marcela Genero, Mario Piattini, Coral Caleron, "A survey of metrics for UML class diagrams", <i>In Journal of Object Technology</i>, vol. 4, pp. 59-92, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+survey+of+metrics+for+UML+class+diagrams&amp;rft.jtitle=Journal+of+Object+Technology&amp;rft.volume=4&amp;rft.issue=9&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Marcela+Genero&amp;rft.au=Mario+Piattini&amp;rft.au=Coral+Caleron"></span> <a class="biburl" title="Genero2005" href="bibtexbrowser.php?key=Genero2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Dirk Beyer, Andreas Noack, Claus Lewerentz, "Efficient Relational Calculation for Software Analysis", <i>In IEEE Trans. Softw. Eng.</i>, vol. 31, no. 2, pp. 137-149, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Efficient+Relational+Calculation+for+Software+Analysis&amp;rft.jtitle=IEEE+Trans.+Softw.+Eng.&amp;rft.volume=31&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2FTSE.2005.23&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Dirk+Beyer&amp;rft.au=Andreas+Noack&amp;rft.au=Claus+Lewerentz"></span> <a class="biburl" title="Beyer2005" href="bibtexbrowser.php?key=Beyer2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/TSE.2005.23">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">Yogesh Singh, Sangeeta Sabharwal, Manu Sood, "A Systematic Approach to Measure the Problem Complexity of Software Requirement Specifications of an Information System", <i>In Information and Management Sciences</i>, vol. 15, pp. 69-90, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Systematic+Approach+to+Measure+the+Problem+Complexity+of+Software+Requirement+Specifications+of+an+Information+System&amp;rft.jtitle=Information+and+Management+Sciences&amp;rft.volume=15&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Yogesh+Singh&amp;rft.au=Sangeeta+Sabharwal&amp;rft.au=Manu+Sood"></span> <a class="biburl" title="Singh2004" href="bibtexbrowser.php?key=Singh2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">Michele Lanza, Stéphane Ducasse, "Polymetric Views - A Lightweight Visual Approach to Reverse Engineering", <i>In Transactions on Software Engineering (TSE)</i>, vol. 29, pp. 782-795, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Polymetric+Views+-+A+Lightweight+Visual+Approach+to+Reverse+Engineering&amp;rft.jtitle=Transactions+on+Software+Engineering+%28TSE%29&amp;rft.volume=29&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Michele+Lanza&amp;rft.au=St%C3%A9phane+Ducasse"></span> <a class="biburl" title="Lanza2003" href="bibtexbrowser.php?key=Lanza2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">N. S. Gill, P. S. Grover, "Component-based measurement: few useful guidelines", <i>In SIGSOFT Softw. Eng. Notes</i>, ACM, vol. 28, no. 6, pp. 4-4, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Component-based+measurement%3A+few+useful+guidelines&amp;rft.jtitle=SIGSOFT+Softw.+Eng.+Notes&amp;rft.volume=28&amp;rft.issue=&amp;rft.pub=ACM&amp;rft_id=info%3Adoi%2F10.1145%2F966221.966237&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=N.+S.+Gill&amp;rft.au=P.+S.+Grover"></span> <a class="biburl" title="Gill2003" href="bibtexbrowser.php?key=Gill2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1145/966221.966237">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">T. Mens, M. Lanza, "A graph-based metamodel for object-oriented software metrics", <i>In Electronic Notes in Theoretical Computer Science</i>, vol. 72, pp. 57-68, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+graph-based+metamodel+for+object-oriented+software+metrics&amp;rft.jtitle=Electronic+Notes+in+Theoretical+Computer+Science&amp;rft.volume=72&amp;rft.issue=2&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1016%2FS1571-0661%2805%2980529-8&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=T.+Mens&amp;rft.au=M.+Lanza"></span> <a class="biburl" title="mens02graphbased" href="bibtexbrowser.php?key=mens02graphbased&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1016/S1571-0661(05)80529-8">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">L. Briand, S. Morasca, V. Basili, "An operational process for goal-driven definition of measures", <i>In IEEE Transactions on Software Engineering</i>, vol. 28, pp. 1106-1125, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=An+operational+process+for+goal-driven+definition+of+measures&amp;rft.jtitle=IEEE+Transactions+on+Software+Engineering&amp;rft.volume=28&amp;rft.issue=12&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=L.+Briand&amp;rft.au=S.+Morasca&amp;rft.au=V.+Basili"></span> <a class="biburl" title="briand02operational" href="bibtexbrowser.php?key=briand02operational&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Paul Temple, Geoffrey Williams, "Infra-technology and economic performance: evidence from the United Kingdom measurement infrastructure", <i>In Information Economics and Policy</i>, vol. 14, no. 4, pp. 435-452, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Infra-technology+and+economic+performance%3A+evidence+from+the+United+Kingdom+measurement+infrastructure&amp;rft.jtitle=Information+Economics+and+Policy&amp;rft.volume=14&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Paul+Temple&amp;rft.au=Geoffrey+Williams"></span> <a class="biburl" title="Temple2002" href="bibtexbrowser.php?key=Temple2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Jagdish Bansiya, Carl Davis, "A Hierarchical Model for Object-Oriented Design Quality Assessment", <i>In IEEE Transactions on Software Engineering</i>, vol. 28, no. 1, pp. 4-17, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Hierarchical+Model+for+Object-Oriented+Design+Quality+Assessment&amp;rft.jtitle=IEEE+Transactions+on+Software+Engineering&amp;rft.volume=28&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2F32.979986&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Jagdish+Bansiya&amp;rft.au=Carl+Davis"></span> <a class="biburl" title="Bans02a" href="bibtexbrowser.php?key=Bans02a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/32.979986">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">Barbara A. Kitchenham, Robert T. Hughes, Stephen G. Linkman, "Modeling Software Measurement Data", <i>In IEEE Trans. Softw. Eng.</i>, IEEE Press, vol. 27, no. 9, pp. 788-804, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Modeling+Software+Measurement+Data&amp;rft.jtitle=IEEE+Trans.+Softw.+Eng.&amp;rft.volume=27&amp;rft.issue=&amp;rft.pub=IEEE+Press&amp;rft_id=info%3Adoi%2F10.1109%2F32.950316&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=Barbara+A.+Kitchenham&amp;rft.au=Robert+T.+Hughes&amp;rft.au=Stephen+G.+Linkman"></span> <a class="biburl" title="Kitchenham2001" href="bibtexbrowser.php?key=Kitchenham2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/32.950316">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2000"></a>[2000]</td> <td class="bibitem">Andreas Schmietendorf, Reiner Dumke, Erik Foltin, "Metrics based asset assessment", <i>In SIGSOFT Softw. Eng. Notes</i>, ACM, vol. 25, no. 4, pp. 51-61, 2000.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Metrics+based+asset+assessment&amp;rft.jtitle=SIGSOFT+Softw.+Eng.+Notes&amp;rft.volume=25&amp;rft.issue=&amp;rft.pub=ACM&amp;rft_id=info%3Adoi%2F10.1145%2F352342.352347&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2000&amp;rft.au=Andreas+Schmietendorf&amp;rft.au=Reiner+Dumke&amp;rft.au=Erik+Foltin"></span> <a class="biburl" title="Schmietendorf2000" href="bibtexbrowser.php?key=Schmietendorf2000&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1145/352342.352347">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2000"></a>[2000]</td> <td class="bibitem">Geert Poels, Guido Dedene, "Distance-based software measurement: necessary and sufficient properties for software measures", <i>In Information and Software Technology</i>, vol. 42, no. 1, pp. 35-46, 2000.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Distance-based+software+measurement%3A+necessary+and+sufficient+properties+for+software+measures&amp;rft.jtitle=Information+and+Software+Technology&amp;rft.volume=42&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2000&amp;rft.au=Geert+Poels&amp;rft.au=Guido+Dedene"></span> <a class="biburl" title="Poels2000" href="bibtexbrowser.php?key=Poels2000&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2000"></a>[2000]</td> <td class="bibitem">Marcela Genero, Mario Piattini, Coral Calero, "Early measures for UML class diagrams", <i>In L'Objet</i>, vol. 6, no. 4, pp. 489-505, 2000.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Early+measures+for+UML+class+diagrams&amp;rft.jtitle=L%27Objet&amp;rft.volume=6&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2000&amp;rft.au=Marcela+Genero&amp;rft.au=Mario+Piattini&amp;rft.au=Coral+Calero"></span> <a class="biburl" title="Genero2000" href="bibtexbrowser.php?key=Genero2000&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2000"></a>[2000]</td> <td class="bibitem">Jagdish Bansiya, "Evaluating framework architecture structural stability", <i>In ACM Comput. Surv.</i>, ACM Press, vol. 32, no. 1es, pp. 18, 2000.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Evaluating+framework+architecture+structural+stability&amp;rft.jtitle=ACM+Comput.+Surv.&amp;rft.volume=32&amp;rft.issue=&amp;rft.pub=ACM+Press&amp;rft_id=info%3Adoi%2F10.1145%2F351936.351954&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2000&amp;rft.au=Jagdish+Bansiya"></span> <a class="biburl" title="Bansiya00" href="bibtexbrowser.php?key=Bansiya00&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1145/351936.351954">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1998"></a>[1998]</td> <td class="bibitem">Lionel C. Briand, John W. Daly, Jürgen Wüst, "A Unified Framework for Cohesion Measurement in Object-Oriented Systems", <i>In Empirical Softw. Eng.</i>, Kluwer Academic Publishers, vol. 3, no. 1, pp. 65-117, 1998.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Unified+Framework+for+Cohesion+Measurement+in+Object-Oriented+Systems&amp;rft.jtitle=Empirical+Softw.+Eng.&amp;rft.volume=3&amp;rft.issue=&amp;rft.pub=Kluwer+Academic+Publishers&amp;rft_id=info%3Adoi%2F10.1023%2FA%3A1009783721306&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1998&amp;rft.au=Lionel+C.+Briand&amp;rft.au=John+W.+Daly&amp;rft.au=J%C3%BCrgen+W%C3%BCst"></span> <a class="biburl" title="Briand1998" href="bibtexbrowser.php?key=Briand1998&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1023/A:1009783721306">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1997"></a>[1997]</td> <td class="bibitem">L. M. Yap, B. Henderson-Sellers, "Class Hierarchies: Consistency Between Libraries", <i>In Australian Computer Journal</i>, vol. 29, no. 3, pp. 81-94, 1997.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Class+Hierarchies%3A+Consistency+Between+Libraries&amp;rft.jtitle=Australian+Computer+Journal&amp;rft.volume=29&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1997&amp;rft.au=L.+M.+Yap&amp;rft.au=B.+Henderson-Sellers"></span> <a class="biburl" title="yap:henderson:97" href="bibtexbrowser.php?key=yap%3Ahenderson%3A97&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1997"></a>[1997]</td> <td class="bibitem">Elaine Ferneley, "An empirical study of coupling and control flow metrics", <i>In Information and Software Technology</i>, vol. 39, no. 13, pp. 879-887, 1997.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=An+empirical+study+of+coupling+and+control+flow+metrics&amp;rft.jtitle=Information+and+Software+Technology&amp;rft.volume=39&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1997&amp;rft.au=Elaine+Ferneley"></span> <a class="biburl" title="Ferneley1997" href="bibtexbrowser.php?key=Ferneley1997&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1996"></a>[1996]</td> <td class="bibitem">Lionel C. Briand, Sandro Morasca, Victor R. Basili, "Property-Based Software Engineering Measurement", <i>In Software Engineering</i>, vol. 22, no. 1, pp. 68-86, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Property-Based+Software+Engineering+Measurement&amp;rft.jtitle=Software+Engineering&amp;rft.volume=22&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Lionel+C.+Briand&amp;rft.au=Sandro+Morasca&amp;rft.au=Victor+R.+Basili"></span> <a class="biburl" title="briand96propertybased" href="bibtexbrowser.php?key=briand96propertybased&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1996"></a>[1996]</td> <td class="bibitem">Martin Hitz, Behzad Montazeri, "Chidamber and Kemerer's Metrics Suite: A Measurement Theory Perspective", <i>In IEEE Trans. Softw. Eng.</i>, vol. 22, no. 4, pp. 267-271, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Chidamber+and+Kemerer%27s+Metrics+Suite%3A+A+Measurement+Theory+Perspective&amp;rft.jtitle=IEEE+Trans.+Softw.+Eng.&amp;rft.volume=22&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2F32.491650&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Martin+Hitz&amp;rft.au=Behzad+Montazeri"></span> <a class="biburl" title="Hitz1996" href="bibtexbrowser.php?key=Hitz1996&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/32.491650">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1996"></a>[1996]</td> <td class="bibitem">Victor R. Basili, Lionel C. Briand, Walcélio L. Melo, "A Validation of Object-Oriented Design Metrics as Quality Indicators", <i>In IEEE Trans. Softw. Eng.</i>, vol. 22, no. 10, pp. 751-761, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Validation+of+Object-Oriented+Design+Metrics+as+Quality+Indicators&amp;rft.jtitle=IEEE+Trans.+Softw.+Eng.&amp;rft.volume=22&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2F32.544352&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=Victor+R.+Basili&amp;rft.au=Lionel+C.+Briand&amp;rft.au=Walc%C3%A9lio+L.+Melo"></span> <a class="biburl" title="Basili1996" href="bibtexbrowser.php?key=Basili1996&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/32.544352">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1995"></a>[1995]</td> <td class="bibitem">Alberto Mendelzon, Johannes Sametinger, "Reverse Engineering by Visualizing and Querying", <i>In Software - Concepts and Tools</i>, vol. 16, no. 4, pp. 170-182, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Reverse+Engineering+by+Visualizing+and+Querying&amp;rft.jtitle=Software+-+Concepts+and+Tools&amp;rft.volume=16&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Alberto+Mendelzon&amp;rft.au=Johannes+Sametinger"></span> <a class="biburl" title="Mendelzon1995" href="bibtexbrowser.php?key=Mendelzon1995&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1995"></a>[1995]</td> <td class="bibitem">Rita J. Costello, Dar-Biau Liu, "Metrics for Requirements Engineering", <i>In J. Syst. Softw.</i>, vol. 29, no. 1, pp. 39-63, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Metrics+for+Requirements+Engineering&amp;rft.jtitle=J.+Syst.+Softw.&amp;rft.volume=29&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Rita+J.+Costello&amp;rft.au=Dar-Biau+Liu"></span> <a class="biburl" title="Costello:1995:MRE" href="bibtexbrowser.php?key=Costello%3A1995%3AMRE&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1994"></a>[1994]</td> <td class="bibitem">Victor R. Basili, Gianluigi Caldiera, H. Dieter Rombach, "The Goal Question Metric Approach", <i>Chapter in Encyclopedia of Software Engineering</i>, Wiley, 1994.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Encyclopedia+of+Software+Engineering&amp;rft.atitle=The+Goal+Question+Metric+Approach&amp;rft.genre=bookitem&amp;rft.pub=Wiley&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1994&amp;rft.au=Victor+R.+Basili&amp;rft.au=Gianluigi+Caldiera&amp;rft.au=H.+Dieter+Rombach"></span> <a class="biburl" title="gqm" href="bibtexbrowser.php?key=gqm&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1994"></a>[1994]</td> <td class="bibitem">Wilf R. LaLonde, John R. Pugh, "Gathering Metric Information Using Metalevel Facilities", <i>In JOOP</i>, vol. 7, no. 1, pp. 33-37, 1994.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Gathering+Metric+Information+Using+Metalevel+Facilities&amp;rft.jtitle=JOOP&amp;rft.volume=7&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1994&amp;rft.au=Wilf+R.+LaLonde&amp;rft.au=John+R.+Pugh"></span> <a class="biburl" title="LaLonde1994" href="bibtexbrowser.php?key=LaLonde1994&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1994"></a>[1994]</td> <td class="bibitem">S. R. Chidamber, C. F. Kemerer, "A Metric Suite for Object-Oriented Design", <i>In IEEE Transactions on Software Engineering</i>, vol. 20, no. 6, pp. 293-318, 1994.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Metric+Suite+for+Object-Oriented+Design&amp;rft.jtitle=IEEE+Transactions+on+Software+Engineering&amp;rft.volume=20&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1994&amp;rft.au=S.+R.+Chidamber&amp;rft.au=C.+F.+Kemerer"></span> <a class="biburl" title="CK94" href="bibtexbrowser.php?key=CK94&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1992"></a>[1992]</td> <td class="bibitem">Norman F. Schneidewind, "Methodology for Validating Software Metrics", <i>In IEEE Trans. Software Eng.</i>, vol. 18, no. 5, pp. 410-422, 1992.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Methodology+for+Validating+Software+Metrics&amp;rft.jtitle=IEEE+Trans.+Software+Eng.&amp;rft.volume=18&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2F32.135774&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1992&amp;rft.au=Norman+F.+Schneidewind"></span> <a class="biburl" title="schneidewind92" href="bibtexbrowser.php?key=schneidewind92&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/32.135774">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1992"></a>[1992]</td> <td class="bibitem">C. Tsalidis, D. Christodoulakis, D. Maritsas, "ATHENA: a software measurement and metrics environment", <i>In Journal of Software Maintenance</i>, vol. 4, no. 2, pp. 61-81, 1992.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=ATHENA%3A+a+software+measurement+and+metrics+environment&amp;rft.jtitle=Journal+of+Software+Maintenance&amp;rft.volume=4&amp;rft.issue=&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1002%2Fsmr.4360040202&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1992&amp;rft.au=C.+Tsalidis&amp;rft.au=D.+Christodoulakis&amp;rft.au=D.+Maritsas"></span> <a class="biburl" title="Tsalidis1992" href="bibtexbrowser.php?key=Tsalidis1992&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1002/smr.4360040202">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1991"></a>[1991]</td> <td class="bibitem">David Card, "What Makes a Software Measure Successful", <i>In American Programmer</i>, vol. 4, pp. 2-8, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=What+Makes+a+Software+Measure+Successful&amp;rft.jtitle=American+Programmer&amp;rft.volume=4&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=David+Card"></span> <a class="biburl" title="Card1991" href="bibtexbrowser.php?key=Card1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1990"></a>[1990]</td> <td class="bibitem">Carol Withrow, "Error Density and Size in Ada Software", <i>In IEEE Softw.</i>, IEEE Computer Society Press, vol. 7, no. 1, pp. 26-30, 1990.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Error+Density+and+Size+in+Ada+Software&amp;rft.jtitle=IEEE+Softw.&amp;rft.volume=7&amp;rft.issue=&amp;rft.pub=IEEE+Computer+Society+Press&amp;rft_id=info%3Adoi%2F10.1109%2F52.43046&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1990&amp;rft.au=Carol+Withrow"></span> <a class="biburl" title="Withrow1990" href="bibtexbrowser.php?key=Withrow1990&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/52.43046">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1990"></a>[1990]</td> <td class="bibitem">Austin C. Melton, Albert L. Baker, James M. Bieman, David M Gustafson, "A mathematical perspective for software measures research", <i>In Software Engineering Journal</i>, vol. 5, pp. 246-254, 1990.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+mathematical+perspective+for+software+measures+research&amp;rft.jtitle=Software+Engineering+Journal&amp;rft.volume=5&amp;rft.issue=5&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1990&amp;rft.au=Austin+C.+Melton&amp;rft.au=Albert+L.+Baker&amp;rft.au=James+M.+Bieman&amp;rft.au=David+M+Gustafson"></span> <a class="biburl" title="Melton-etal90" href="bibtexbrowser.php?key=Melton-etal90&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1990"></a>[1990]</td> <td class="bibitem">Barbara A. Kitchenham, Lesley M. Pickard, Susan J. Linkman, "An evaluation of some design metrics", <i>In Softw. Eng. J.</i>, Michael Faraday House, vol. 5, no. 1, Herts, UK, UK, pp. 50-58, 1990.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=An+evaluation+of+some+design+metrics&amp;rft.jtitle=Softw.+Eng.+J.&amp;rft.volume=5&amp;rft.issue=&amp;rft.pub=Michael+Faraday+House&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1990&amp;rft.au=Barbara+A.+Kitchenham&amp;rft.au=Lesley+M.+Pickard&amp;rft.au=Susan+J.+Linkman"></span> <a class="biburl" title="Kitchenham1990" href="bibtexbrowser.php?key=Kitchenham1990&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1988"></a>[1988]</td> <td class="bibitem">E. J. Weyuker, "Evaluating Software Complexity Metrics", <i>In IEEE Transactions on Software Engineering</i>, vol. 14, no. 9, pp. 1357-1365, 1988.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Evaluating+Software+Complexity+Metrics&amp;rft.jtitle=IEEE+Transactions+on+Software+Engineering&amp;rft.volume=14&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1988&amp;rft.au=E.+J.+Weyuker"></span> <a class="biburl" title="Weyum88" href="bibtexbrowser.php?key=Weyum88&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1987"></a>[1987]</td> <td class="bibitem">J. A. Zachman, "A framework for information systems architecture", <i>In IBM Systems Journal</i>, vol. 26, no. 3, pp. 276-292, 1987.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+framework+for+information+systems+architecture&amp;rft.jtitle=IBM+Systems+Journal&amp;rft.volume=26&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1987&amp;rft.au=J.+A.+Zachman"></span> <a class="biburl" title="Zachman1987" href="bibtexbrowser.php?key=Zachman1987&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1984"></a>[1984]</td> <td class="bibitem">Victor R. Basili, David M. Weiss, "A Methodology for Collecting Valid Software Engineering Data.", <i>In IEEE Trans. Software Eng.</i>, vol. 10, no. 6, pp. 728-738, 1984.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Methodology+for+Collecting+Valid+Software+Engineering+Data.&amp;rft.jtitle=IEEE+Trans.+Software+Eng.&amp;rft.volume=10&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1984&amp;rft.au=Victor+R.+Basili&amp;rft.au=David+M.+Weiss"></span> <a class="biburl" title="BasiliW84" href="bibtexbrowser.php?key=BasiliW84&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1981"></a>[1981]</td> <td class="bibitem">S. Henry, D. Kafura, "Software Structure Metrics Based on Information Flow", <i>In IEEE Trans. Softw. Eng.</i>, IEEE Press, vol. 7, no. 5, pp. 510-518, 1981.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=Software+Structure+Metrics+Based+on+Information+Flow&amp;rft.jtitle=IEEE+Trans.+Softw.+Eng.&amp;rft.volume=7&amp;rft.issue=&amp;rft.pub=IEEE+Press&amp;rft_id=info%3Adoi%2F10.1109%2FTSE.1981.231113&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1981&amp;rft.au=S.+Henry&amp;rft.au=D.+Kafura"></span> <a class="biburl" title="Henry1981" href="bibtexbrowser.php?key=Henry1981&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/TSE.1981.231113">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1976"></a>[1976]</td> <td class="bibitem">McCabe, "A Complexity Measure", <i>In IEEE Transactions on Software Engineering</i>, vol. 2, pp. 308-320, 1976.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Complexity+Measure&amp;rft.jtitle=IEEE+Transactions+on+Software+Engineering&amp;rft.volume=2&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1976&amp;rft.au=McCabe"></span> <a class="biburl" title="mccabe1976" href="bibtexbrowser.php?key=mccabe1976&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div class="header">Refereed Conference Papers</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">"A Model-driven Measurement Approach"</a>, <i>In Proceedings of the ACM/IEEE 11th International Conference on Model Driven Engineering Languages and Systems (MODELS'2008)</i>, 2008. (acceptance rate: 58/274)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Model-driven+Measurement+Approach&amp;rft.btitle=Proceedings+of+the+ACM%2FIEEE+11th+International+Conference+on+Model+Driven+Engineering+Languages+and+Systems+%28MODELS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FA-Model-Driven-Measurement-Approach.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08d" href="bibtexbrowser.php?key=monperrus08d&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">"Model-driven Engineering Metrics for Real Time Systems"</a>, <i>In Proceedings of the 4th European Congress on Embedded Real Time Software (ERTS'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model-driven+Engineering+Metrics+for+Real+Time+Systems&amp;rft.btitle=Proceedings+of+the+4th+European+Congress+on+Embedded+Real+Time+Software+%28ERTS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FModel-driven_Engineering_Metrics_for_Real_Time_Systems.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08a" href="bibtexbrowser.php?key=monperrus08a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Beatriz Mora, Félix Garcia, Francisco Ruiz, Mario Piattini, Artur Boronat, Abel Gómez, José Á. Carsí, Isidro Ramos, "Software measurement by using QVT transformations in an MDA context", <i>In Proceedings of the International Conference on Enterprise Information Systems (ICEIS'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Software+measurement+by+using+QVT+transformations+in+an+MDA+context&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Enterprise+Information+Systems+%28ICEIS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Beatriz+Mora&amp;rft.au=F%C3%A9lix+Garcia&amp;rft.au=Francisco+Ruiz&amp;rft.au=Mario+Piattini&amp;rft.au=Artur+Boronat&amp;rft.au=Abel+G%C3%B3mez&amp;rft.au=Jos%C3%A9+%C3%81.+Cars%C3%AD&amp;rft.au=Isidro+Ramos"></span> <a class="biburl" title="Mora2008" href="bibtexbrowser.php?key=Mora2008&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Rüdiger Lincke, Jonas Lundberg, Welf Löwe, "Comparing Software Metric Tools", <i>In Proceedings of the 2008 international Symposium on Software Testing and Analysis (ISSTA'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Comparing+Software+Metric+Tools&amp;rft.btitle=Proceedings+of+the+2008+international+Symposium+on+Software+Testing+and+Analysis+%28ISSTA%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=R%C3%BCdiger+Lincke&amp;rft.au=Jonas+Lundberg&amp;rft.au=Welf+L%C3%B6we"></span> <a class="biburl" title="Lincke2008" href="bibtexbrowser.php?key=Lincke2008&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Esther Guerra, Paloma Diaz, Juan de Lara, "Visual Specification of Metrics for Domain Specific Visual Languages", <i>In Graph Transformation and Visual Modeling Techniques (GT-VMT 2006)</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Visual+Specification+of+Metrics+for+Domain+Specific+Visual+Languages&amp;rft.btitle=Graph+Transformation+and+Visual+Modeling+Techniques+%28GT-VMT+2006%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Esther+Guerra&amp;rft.au=Paloma+Diaz&amp;rft.au=Juan+de+Lara"></span> <a class="biburl" title="guerra2006" href="bibtexbrowser.php?key=guerra2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Brian Berenbach, Gail Borotto, "Metrics for model driven requirements development", <i>In Proceeding of the 28th International Conference on Software Engineering (ICSE '06)</i>, ACM Press, pp. 445-451, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Metrics+for+model+driven+requirements+development&amp;rft.btitle=Proceeding+of+the+28th+International+Conference+on+Software+Engineering+%28ICSE+%2706%29&amp;rft.genre=bookitem&amp;rft.pub=ACM+Press&amp;rft_id=info%3Adoi%2F10.1145%2F1134285.1134348&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Brian+Berenbach&amp;rft.au=Gail+Borotto"></span> <a class="biburl" title="Metrics_for_model_driven_requirements_development" href="bibtexbrowser.php?key=Metrics_for_model_driven_requirements_development&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1145/1134285.1134348">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Jacqueline A. McQuillan, James F. Power, "Experiences of using the Dagstuhl Middle Metamodel for defining software metrics", <i>In Proceedings of the 4th International Conference on Principles and Practices of Programming in Java</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Experiences+of+using+the+Dagstuhl+Middle+Metamodel+for+defining+software+metrics&amp;rft.btitle=Proceedings+of+the+4th+International+Conference+on+Principles+and+Practices+of+Programming+in+Java&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Jacqueline+A.+McQuillan&amp;rft.au=James+F.+Power"></span> <a class="biburl" title="Mcquillan2006a" href="bibtexbrowser.php?key=Mcquillan2006a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Jacqueline McQuillan, James Power, "Towards the re-usability of software metrics definitions at the meta level", <i>In Proceedings of the ECOOP'2006 Doctoral Symposium</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Towards+the+re-usability+of+software+metrics+definitions+at+the+meta+level&amp;rft.btitle=Proceedings+of+the+ECOOP%272006+Doctoral+Symposium&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Jacqueline+McQuillan&amp;rft.au=James+Power"></span> <a class="biburl" title="McQuillan2006b" href="bibtexbrowser.php?key=McQuillan2006b&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Michael Eichberg, Daniel Germanus, Mira Mezini, Lukas Mrokon, Thorsten Schäfer, "QScope: an Open, Extensible Framework for Measuring Software Projects.", <i>In Proceedings of the 10th European Conference on Software Maintenance and Reengineering (CSMR'06)</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=QScope%3A+an+Open%2C+Extensible+Framework+for+Measuring+Software+Projects.&amp;rft.btitle=Proceedings+of+the+10th+European+Conference+on+Software+Maintenance+and+Reengineering+%28CSMR%2706%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Michael+Eichberg&amp;rft.au=Daniel+Germanus&amp;rft.au=Mira+Mezini&amp;rft.au=Lukas+Mrokon&amp;rft.au=Thorsten+Sch%C3%A4fer"></span> <a class="biburl" title="Eichberg2006" href="bibtexbrowser.php?key=Eichberg2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">El Hachemi Alikacem, Houari Sahraoui, "Détection d'anomalies utilisant un langage de description de règle de qualité", <i>In Actes de la 12ème conférence Langage et Modèles à Objets</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=D%C3%A9tection+d%27anomalies+utilisant+un+langage+de+description+de+r%C3%A8gle+de+qualit%C3%A9&amp;rft.btitle=Actes+de+la+12%C3%A8me+conf%C3%A9rence+Langage+et+Mod%C3%A8les+%C3%A0+Objets&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=El+Hachemi+Alikacem&amp;rft.au=Houari+Sahraoui"></span> <a class="biburl" title="Alikacem2006a" href="bibtexbrowser.php?key=Alikacem2006a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">El Hachemi Alikacem, Houari Sahraoui, "Generic Metric Extraction Framework", <i>In Proceedings of IWSM/MetriKon'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Generic+Metric+Extraction+Framework&amp;rft.btitle=Proceedings+of+IWSM%2FMetriKon%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=El+Hachemi+Alikacem&amp;rft.au=Houari+Sahraoui"></span> <a class="biburl" title="Alikacem2006" href="bibtexbrowser.php?key=Alikacem2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">M. El Wakil, A. El Bastawissi, M. Boshra, A. Fahmy, "A novel approach to formalize and collect Object-Oriented Design-Metrics", <i>In Proceedings of the 9th International Conference on Empirical Assessment in Software Engineering</i>, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+novel+approach+to+formalize+and+collect+Object-Oriented+Design-Metrics&amp;rft.btitle=Proceedings+of+the+9th+International+Conference+on+Empirical+Assessment+in+Software+Engineering&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=M.+El+Wakil&amp;rft.au=A.+El+Bastawissi&amp;rft.au=M.+Boshra&amp;rft.au=A.+Fahmy"></span> <a class="biburl" title="wakil2005" href="bibtexbrowser.php?key=wakil2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Cristina Marinescu, Radu Marinescu, Tudor Gîrba, "Towards a Simplified Implementation of Object-Oriented Design Metrics.", <i>In IEEE METRICS</i>, pp. 11, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Towards+a+Simplified+Implementation+of+Object-Oriented+Design+Metrics.&amp;rft.btitle=IEEE+METRICS&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2FMETRICS.2005.48&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Cristina+Marinescu&amp;rft.au=Radu+Marinescu&amp;rft.au=Tudor+G%C3%AErba"></span> <a class="biburl" title="marinescuMG05" href="bibtexbrowser.php?key=marinescuMG05&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/METRICS.2005.48">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Tudor Gîrba, Michele Lanza, Stéphane Ducasse, <a href="http://www.iam.unibe.ch/~scg/Archive/Papers/Girb05aHierarchiesEvolution.pdf">"Characterizing the Evolution of Class Hierarchies"</a>, <i>In Proceedings of the 9th European Conference on Software Maintenance and Reengineering (CSMR'05)</i>, IEEE Computer Society, pp. 2-11, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Characterizing+the+Evolution+of+Class+Hierarchies&amp;rft.btitle=Proceedings+of+the+9th+European+Conference+on+Software+Maintenance+and+Reengineering+%28CSMR%2705%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rft_id=http%3A%2F%2Fwww.iam.unibe.ch%2F%7Escg%2FArchive%2FPapers%2FGirb05aHierarchiesEvolution.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Tudor+G%C3%AErba&amp;rft.au=Michele+Lanza&amp;rft.au=St%C3%A9phane+Ducasse"></span> <a class="biburl" title="girba05a" href="bibtexbrowser.php?key=girba05a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.iam.unibe.ch/~scg/Archive/Papers/Girb05aHierarchiesEvolution.pdf">[pdf]</a> <a href="http://dx.doi.org/10.1109/CSMR.2005.15">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Betty H. C. Cheng, Ryan Stephenson, Brian Berenbach, "Lessons Learned from Automated Analysis of Industrial UML Class Models (An Experience Report).", <i>In Proceedings of MODELS' 2005</i>, pp. 324-338, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Lessons+Learned+from+Automated+Analysis+of+Industrial+UML+Class+Models+%28An+Experience+Report%29.&amp;rft.btitle=Proceedings+of+MODELS%27+2005&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1007%2F11557432_24&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Betty+H.+C.+Cheng&amp;rft.au=Ryan+Stephenson&amp;rft.au=Brian+Berenbach"></span> <a class="biburl" title="cheng05" href="bibtexbrowser.php?key=cheng05&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1007/11557432_24">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Sajjad Mahmood, Richard Lai, "Measuring the Complexity of a UML Component Specification", <i>In QSIC '05: Proceedings of the Fifth International Conference on Quality Software</i>, IEEE Computer Society, Washington, DC, USA, pp. 150-160, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+the+Complexity+of+a+UML+Component+Specification&amp;rft.btitle=QSIC+%2705%3A+Proceedings+of+the+Fifth+International+Conference+on+Quality+Software&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rft_id=info%3Adoi%2F10.1109%2FQSIC.2005.39&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Sajjad+Mahmood&amp;rft.au=Richard+Lai"></span> <a class="biburl" title="Mahmood2005" href="bibtexbrowser.php?key=Mahmood2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/QSIC.2005.39">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">N. Debnath, D. Riesco, G. Montejano, R. Uzal, L. Baigorria, A. Dasso, A. Funes, "A technique based on the OMG metamodel and OCL for the definition of object-oriented metrics applied to UML models", <i>In Proceedings of the ACS/IEEE 2005 International Conference on Computer Systems and Applications (AICCSA'05)</i>, IEEE Computer Society, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+technique+based+on+the+OMG+metamodel+and+OCL+for+the+definition+of+object-oriented+metrics+applied+to+UML+models&amp;rft.btitle=Proceedings+of+the+ACS%2FIEEE+2005+International+Conference+on+Computer+Systems+and+Applications+%28AICCSA%2705%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=N.+Debnath&amp;rft.au=D.+Riesco&amp;rft.au=G.+Montejano&amp;rft.au=R.+Uzal&amp;rft.au=L.+Baigorria&amp;rft.au=A.+Dasso&amp;rft.au=A.+Funes"></span> <a class="biburl" title="Debnath2005" href="bibtexbrowser.php?key=Debnath2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Aline Lùcia Baroni, "Quantitative assessment of UML dynamic models", <i>In Proceedings of the doctoral symposium at the 10th European Software Engineering Conference held jointly with 13th International Symposium on Foundations of Software Engineering (ESEC-FSE'05)</i>, ACM Press, pp. 366-369, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Quantitative+assessment+of+UML+dynamic+models&amp;rft.btitle=Proceedings+of+the+doctoral+symposium+at+the+10th+European+Software+Engineering+Conference+held+jointly+with+13th+International+Symposium+on+Foundations+of+Software+Engineering+%28ESEC-FSE%2705%29&amp;rft.genre=bookitem&amp;rft.pub=ACM+Press&amp;rft_id=info%3Adoi%2F10.1145%2F1081706.1081764&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Aline+L%C3%B9cia+Baroni"></span> <a class="biburl" title="Baroni2005" href="bibtexbrowser.php?key=Baroni2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1145/1081706.1081764">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Jarallah S. Alghamdi, Raimi A. Rufai, Sohel M. Khan, "OOMeter: A Software Quality Assurance Tool", <i>In Proceedings of the Ninth European Conference on Software Maintenance and Reengineering (CSMR'05)</i>, pp. 190-191, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=OOMeter%3A+A+Software+Quality+Assurance+Tool&amp;rft.btitle=Proceedings+of+the+Ninth+European+Conference+on+Software+Maintenance+and+Reengineering+%28CSMR%2705%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2FCSMR.2005.44&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Jarallah+S.+Alghamdi&amp;rft.au=Raimi+A.+Rufai&amp;rft.au=Sohel+M.+Khan"></span> <a class="biburl" title="Alghamdi2005" href="bibtexbrowser.php?key=Alghamdi2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/CSMR.2005.44">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">H. Ma, W. Shao, L.Zhang, Z.Ma, Y.Jiang, "Applying OO Metrics to Assess UML Meta-Models", <i>In Proceedings of MODELS/UML'2004</i>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Applying+OO+Metrics+to+Assess+UML+Meta-Models&amp;rft.btitle=Proceedings+of+MODELS%2FUML%272004&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=H.+Ma&amp;rft.au=W.+Shao&amp;rft.au=L.Zhang&amp;rft.au=Z.Ma&amp;rft.au=Y.Jiang"></span> <a class="biburl" title="metrics-uml-metamodel" href="bibtexbrowser.php?key=metrics-uml-metamodel&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">V. L. Narasimhan, B. Hendradjaya, "Component Integration Metrics", <i>In Proceedings of the International Conference on Software Engineering Research and Practice (SERP'04)</i>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Component+Integration+Metrics&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Software+Engineering+Research+and+Practice+%28SERP%2704%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=V.+L.+Narasimhan&amp;rft.au=B.+Hendradjaya"></span> <a class="biburl" title="Narasimhan2004" href="bibtexbrowser.php?key=Narasimhan2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">Félix Garcia, Francisco Ruiz, Mario Piattini, "Definition and empirical validation of metrics for software process models", <i>In Proceedings of the International Conference on Product Focused Software Process Improvement (PROFES'2004)</i>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Definition+and+empirical+validation+of+metrics+for+software+process+models&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Product+Focused+Software+Process+Improvement+%28PROFES%272004%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=F%C3%A9lix+Garcia&amp;rft.au=Francisco+Ruiz&amp;rft.au=Mario+Piattini"></span> <a class="biburl" title="Garcia2004" href="bibtexbrowser.php?key=Garcia2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">Xavier Franch, Gemma Grau, Carme Quer, "A Framework for the Definition of Metrics for Actor-Dependency Models", <i>In Proceedings of the 2th IEEE International Requirements Engineering Conference (RE'04)</i>, IEEE Computer Society, pp. 348-349, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Framework+for+the+Definition+of+Metrics+for+Actor-Dependency+Models&amp;rft.btitle=Proceedings+of+the+2th+IEEE+International+Requirements+Engineering+Conference+%28RE%2704%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rft_id=info%3Adoi%2F10.1109%2FRE.2004.2&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Xavier+Franch&amp;rft.au=Gemma+Grau&amp;rft.au=Carme+Quer"></span> <a class="biburl" title="Franch2004" href="bibtexbrowser.php?key=Franch2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/RE.2004.2">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">Bruno Dufour, Karel Driesen, Laurie Hendren, Clark Verbrugge, <a href="http://www.sable.mcgill.ca/publications/papers/2003-5/sable-paper-2003-5.pdf">"Dynamic Metrics for Java"</a>, <i>In Proceedings of the ACM SIGPLAN 2003 Conference on Object-Oriented Programming, Systems, Languages, and Applications (OOPSLA'03)</i>, ACM Press, pp. 149-168, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Dynamic+Metrics+for+Java&amp;rft.btitle=Proceedings+of+the+ACM+SIGPLAN+2003+Conference+on+Object-Oriented+Programming%2C+Systems%2C+Languages%2C+and+Applications+%28OOPSLA%2703%29&amp;rft.genre=bookitem&amp;rft.pub=ACM+Press&amp;rft_id=http%3A%2F%2Fwww.sable.mcgill.ca%2Fpublications%2Fpapers%2F2003-5%2Fsable-paper-2003-5.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Bruno+Dufour&amp;rft.au=Karel+Driesen&amp;rft.au=Laurie+Hendren&amp;rft.au=Clark+Verbrugge"></span> <a class="biburl" title="dufour03" href="bibtexbrowser.php?key=dufour03&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.sable.mcgill.ca/publications/papers/2003-5/sable-paper-2003-5.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">Hironori Washizaki, Hirokazu Yamamoto, Yoshiaki Fukazawa, "A Metrics Suite for Measuring Reusability of Software Components", <i>In METRICS '03: Proceedings of the 9th International Symposium on Software Metrics</i>, IEEE Computer Society, pp. 211, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Metrics+Suite+for+Measuring+Reusability+of+Software+Components&amp;rft.btitle=METRICS+%2703%3A+Proceedings+of+the+9th+International+Symposium+on+Software+Metrics&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Hironori+Washizaki&amp;rft.au=Hirokazu+Yamamoto&amp;rft.au=Yoshiaki+Fukazawa"></span> <a class="biburl" title="Washizaki2003" href="bibtexbrowser.php?key=Washizaki2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">Motoshi Saeki, <a href="http://link.springer.de/link/service/series/0558/bibs/2681/26810374.htm">"Embedding Metrics into Information Systems Development Methods: An Application of Method Engineering Technique"</a>, <i>In CAiSE</i>, pp. 374-389, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Embedding+Metrics+into+Information+Systems+Development+Methods%3A+An+Application+of+Method+Engineering+Technique&amp;rft.btitle=CAiSE&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Flink.springer.de%2Flink%2Fservice%2Fseries%2F0558%2Fbibs%2F2681%2F26810374.htm&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Motoshi+Saeki"></span> <a class="biburl" title="Saeki2003" href="bibtexbrowser.php?key=Saeki2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://link.springer.de/link/service/series/0558/bibs/2681/26810374.htm">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">Luis Reynoso, Marcela Genero, Mario Piattini, <a href="http://www-ctp.di.fct.unl.pt/QUASAR/QAOOSE2003/papers/OCLM-QAOOSE03.pdf">"Measuring OCL expressions: a "tracing"-based approach"</a>, <i>In Proceedings of QAOOSE'2003</i>, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+OCL+expressions%3A+a+%22tracing%22-based+approach&amp;rft.btitle=Proceedings+of+QAOOSE%272003&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww-ctp.di.fct.unl.pt%2FQUASAR%2FQAOOSE2003%2Fpapers%2FOCLM-QAOOSE03.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=Luis+Reynoso&amp;rft.au=Marcela+Genero&amp;rft.au=Mario+Piattini"></span> <a class="biburl" title="Reynoso2003" href="bibtexbrowser.php?key=Reynoso2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www-ctp.di.fct.unl.pt/QUASAR/QAOOSE2003/papers/OCLM-QAOOSE03.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Jean Paul Van Belle, "Towards a Syntactic Signature for Domain Models: Proposed Descriptive Metrics for Visualizing the Entity Fan-out Frequency Distribution", <i>In Proceedings of SAICSIT 2002</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Towards+a+Syntactic+Signature+for+Domain+Models%3A+Proposed+Descriptive+Metrics+for+Visualizing+the+Entity+Fan-out+Frequency+Distribution&amp;rft.btitle=Proceedings+of+SAICSIT+2002&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Jean+Paul+Van+Belle"></span> <a class="biburl" title="towards-a-syntactic" href="bibtexbrowser.php?key=towards-a-syntactic&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">T. J. Harmer, F. G. Wilkie, "An Extensible Metrics Extraction Environment for Object-Oriented Programming Languages", <i>In Proceedings of the International Conference on Software Maintenance</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=An+Extensible+Metrics+Extraction+Environment+for+Object-Oriented+Programming+Languages&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Software+Maintenance&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=T.+J.+Harmer&amp;rft.au=F.+G.+Wilkie"></span> <a class="biburl" title="harmer2002" href="bibtexbrowser.php?key=harmer2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Mei-Huei Tang, Mei-Hwa Chen, "Measuring OO Design Metrics from UML", <i>In Proceedings of MODELS/UML'2002</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+OO+Design+Metrics+from+UML&amp;rft.btitle=Proceedings+of+MODELS%2FUML%272002&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Mei-Huei+Tang&amp;rft.au=Mei-Hwa+Chen"></span> <a class="biburl" title="Tang2002" href="bibtexbrowser.php?key=Tang2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Hyoseob Kim, Cornelia Boldyreff, <a href="http://alarcos.inf-cr.uclm.es/qaoose2002/docs/QAOOSE-Kim-Bol.pdf">"Developing Software Metrics Applicable to UML Models"</a>, <i>In Proceedings of QAOOSE'2002</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Developing+Software+Metrics+Applicable+to+UML+Models&amp;rft.btitle=Proceedings+of+QAOOSE%272002&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Falarcos.inf-cr.uclm.es%2Fqaoose2002%2Fdocs%2FQAOOSE-Kim-Bol.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Hyoseob+Kim&amp;rft.au=Cornelia+Boldyreff"></span> <a class="biburl" title="Kim2002" href="bibtexbrowser.php?key=Kim2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://alarcos.inf-cr.uclm.es/qaoose2002/docs/QAOOSE-Kim-Bol.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Brian Henderson-Sellers, Didar Zowghi, T. Klemola, S. Parasuram, "Sizing Use Cases: How to Create a Standard Metrical Approach", <i>In Proceedings of the 8th International Conference on Object-Oriented Information Systems (OOIS '02)</i>, Springer-Verlag, pp. 409-421, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Sizing+Use+Cases%3A+How+to+Create+a+Standard+Metrical+Approach&amp;rft.btitle=Proceedings+of+the+8th+International+Conference+on+Object-Oriented+Information+Systems+%28OOIS+%2702%29&amp;rft.genre=bookitem&amp;rft.pub=Springer-Verlag&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Brian+Henderson-Sellers&amp;rft.au=Didar+Zowghi&amp;rft.au=T.+Klemola&amp;rft.au=S.+Parasuram"></span> <a class="biburl" title="Henderson-Sellers2002" href="bibtexbrowser.php?key=Henderson-Sellers2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Marcela Genero, Mario Piattini, Coral Calero, "Empirical Validation of Class Diagram Metrics", <i>In Proceedings of the International Symposium on Empirical Software Engineering (ISESE'02)</i>, IEEE Computer Society, pp. 195, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Empirical+Validation+of+Class+Diagram+Metrics&amp;rft.btitle=Proceedings+of+the+International+Symposium+on+Empirical+Software+Engineering+%28ISESE%2702%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Marcela+Genero&amp;rft.au=Mario+Piattini&amp;rft.au=Coral+Calero"></span> <a class="biburl" title="Genero2002a" href="bibtexbrowser.php?key=Genero2002a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">M. Genero, D. Miranda, M. Piattini, <a href="http://alarcos.inf-cr.uclm.es/qaoose2002/docs/QAOOSE-Gen-Mir-Pia.pdf">"Defining and Validating Metrics for UML Statechart Diagrams"</a>, <i>In Proceedings of QAOOSE'2002</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Defining+and+Validating+Metrics+for+UML+Statechart+Diagrams&amp;rft.btitle=Proceedings+of+QAOOSE%272002&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Falarcos.inf-cr.uclm.es%2Fqaoose2002%2Fdocs%2FQAOOSE-Gen-Mir-Pia.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=M.+Genero&amp;rft.au=D.+Miranda&amp;rft.au=M.+Piattini"></span> <a class="biburl" title="Genero2002" href="bibtexbrowser.php?key=Genero2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://alarcos.inf-cr.uclm.es/qaoose2002/docs/QAOOSE-Gen-Mir-Pia.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">A. Baroni, F. Abreu, "Formalizing Object-Oriented Design Metrics upon the UML Meta-Model", <i>In Proc. of the 16th Brazilian Symposium on Software Engineering</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Formalizing+Object-Oriented+Design+Metrics+upon+the+UML+Meta-Model&amp;rft.btitle=Proc.+of+the+16th+Brazilian+Symposium+on+Software+Engineering&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=A.+Baroni&amp;rft.au=F.+Abreu"></span> <a class="biburl" title="Baroni2002" href="bibtexbrowser.php?key=Baroni2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">R. van Solingen, E. Berghout, "Integrating goal-oriented measurement in industrial software engineering: industrial experiences with and additions to the Goal/Question/Metric method (GQM)", <i>In Proceedings of the 7th Software Metrics Symposium (METRICS'2001)</i>, pp. 246-258, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Integrating+goal-oriented+measurement+in+industrial+software+engineering%3A+industrial+experiences+with+and+additions+to+the+Goal%2FQuestion%2FMetric+method+%28GQM%29&amp;rft.btitle=Proceedings+of+the+7th+Software+Metrics+Symposium+%28METRICS%272001%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1109%2FMETRIC.2001.915533&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=R.+van+Solingen&amp;rft.au=E.+Berghout"></span> <a class="biburl" title="Solingen2001" href="bibtexbrowser.php?key=Solingen2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/METRIC.2001.915533">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">Sahra Sedigh-Ali, Arif Ghafoor, Raymond A. Paul, "Metrics-Guided Quality Management for Component-Based Software Systems", <i>In Proceedings of the 25th International Computer Software and Applications Conference (COMPSAC'01)</i>, IEEE Computer Society, pp. 303, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Metrics-Guided+Quality+Management+for+Component-Based+Software+Systems&amp;rft.btitle=Proceedings+of+the+25th+International+Computer+Software+and+Applications+Conference+%28COMPSAC%2701%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=Sahra+Sedigh-Ali&amp;rft.au=Arif+Ghafoor&amp;rft.au=Raymond+A.+Paul"></span> <a class="biburl" title="Sedigh-Ali2001" href="bibtexbrowser.php?key=Sedigh-Ali2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">Annabella Loconsole, <a href="http://www.cs.umu.se/~jubo/Projects/QMSE/ESCOM2001.pdf">"Measuring the Requirements Management Key Process Area"</a>, <i>In Proceedings of the 12th European Software Control and Metrics Conference (ESCOM'2001)</i>, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+the+Requirements+Management+Key+Process+Area&amp;rft.btitle=Proceedings+of+the+12th+European+Software+Control+and+Metrics+Conference+%28ESCOM%272001%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.cs.umu.se%2F%7Ejubo%2FProjects%2FQMSE%2FESCOM2001.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=Annabella+Loconsole"></span> <a class="biburl" title="Loconsole2001" href="bibtexbrowser.php?key=Loconsole2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.cs.umu.se/~jubo/Projects/QMSE/ESCOM2001.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">Eun Sook Cho, Min Sun Kim, Soo Dong Kim, "Component Metrics to Measure Component Quality", <i>In Proceedings of the 8th Asia-Pacific on Software Engineering Conference (APSEC'01)</i>, IEEE Computer Society, pp. 419, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Component+Metrics+to+Measure+Component+Quality&amp;rft.btitle=Proceedings+of+the+8th+Asia-Pacific+on+Software+Engineering+Conference+%28APSEC%2701%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=Eun+Sook+Cho&amp;rft.au=Min+Sun+Kim&amp;rft.au=Soo+Dong+Kim"></span> <a class="biburl" title="Cho2001" href="bibtexbrowser.php?key=Cho2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">Sjaak Brinkkemper, Motoshi Saeki, Frank Harmsen, "A Method Engineering Language for the Description of Systems Development Methods", <i>In CAiSE</i>, pp. 473-476, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Method+Engineering+Language+for+the+Description+of+Systems+Development+Methods&amp;rft.btitle=CAiSE&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=Sjaak+Brinkkemper&amp;rft.au=Motoshi+Saeki&amp;rft.au=Frank+Harmsen"></span> <a class="biburl" title="Brinkkemper2001" href="bibtexbrowser.php?key=Brinkkemper2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2000"></a>[2000]</td> <td class="bibitem">M. Xenos, D. Stavrinoudis, K. Zikouli, D. Christodoulakis, "Object-oriented metrics - a survey", <i>In Proceedings of the FESMA Conference (FESMA'2000)</i>, 2000.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Object-oriented+metrics+-+a+survey&amp;rft.btitle=Proceedings+of+the+FESMA+Conference+%28FESMA%272000%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2000&amp;rft.au=M.+Xenos&amp;rft.au=D.+Stavrinoudis&amp;rft.au=K.+Zikouli&amp;rft.au=D.+Christodoulakis"></span> <a class="biburl" title="xenos00objectoriented" href="bibtexbrowser.php?key=xenos00objectoriented&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2000"></a>[2000]</td> <td class="bibitem">Barry W. Boehm, Kevin J. Sullivan, "Software economics: a roadmap", <i>In ICSE - Future of SE Track</i>, pp. 319-343, 2000.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Software+economics%3A+a+roadmap&amp;rft.btitle=ICSE+-+Future+of+SE+Track&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=info%3Adoi%2F10.1145%2F336512.336584&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2000&amp;rft.au=Barry+W.+Boehm&amp;rft.au=Kevin+J.+Sullivan"></span> <a class="biburl" title="Boehm2000" href="bibtexbrowser.php?key=Boehm2000&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1145/336512.336584">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1999"></a>[1999]</td> <td class="bibitem">Michael Mattsson, Jan Bosch, "Characterizing Stability in Evolving Frameworks", <i>In TOOLS '99: Proceedings of the Technology of Object-Oriented Languages and Systems</i>, IEEE Computer Society, pp. 118, 1999.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Characterizing+Stability+in+Evolving+Frameworks&amp;rft.btitle=TOOLS+%2799%3A+Proceedings+of+the+Technology+of+Object-Oriented+Languages+and+Systems&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1999&amp;rft.au=Michael+Mattsson&amp;rft.au=Jan+Bosch"></span> <a class="biburl" title="mattson99" href="bibtexbrowser.php?key=mattson99&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1999"></a>[1999]</td> <td class="bibitem">Serge Demeyer, Stéphane Ducasse, "Metrics, Do They Really Help?", <i>In Proceedings of LMO'99</i>, pp. 69-82, 1999.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Metrics%2C+Do+They+Really+Help%3F&amp;rft.btitle=Proceedings+of+LMO%2799&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1999&amp;rft.au=Serge+Demeyer&amp;rft.au=St%C3%A9phane+Ducasse"></span> <a class="biburl" title="Demeyer1999a" href="bibtexbrowser.php?key=Demeyer1999a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1999"></a>[1999]</td> <td class="bibitem">Serge Demeyer, Stéphane Ducasse, Michele Lanza, "A Hybrid Reverse Engineering Approach Combining Metrics and Program Visualization", <i>In Proceedings of the Sixth Working Conference on Reverse Engineering (WCRE'99)</i>, pp. 175, 1999.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Hybrid+Reverse+Engineering+Approach+Combining+Metrics+and+Program+Visualization&amp;rft.btitle=Proceedings+of+the+Sixth+Working+Conference+on+Reverse+Engineering+%28WCRE%2799%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1999&amp;rft.au=Serge+Demeyer&amp;rft.au=St%C3%A9phane+Ducasse&amp;rft.au=Michele+Lanza"></span> <a class="biburl" title="Demeyer1999" href="bibtexbrowser.php?key=Demeyer1999&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1998"></a>[1998]</td> <td class="bibitem">M. Marchesi, "OOA Metrics for the Unified Modeling Language", <i>In Proceedings of the 2nd Euromicro Conference on Software Maintenance and Reengineering (CSMR'98)</i>, IEEE Computer Society, pp. 67, 1998.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=OOA+Metrics+for+the+Unified+Modeling+Language&amp;rft.btitle=Proceedings+of+the+2nd+Euromicro+Conference+on+Software+Maintenance+and+Reengineering+%28CSMR%2798%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1998&amp;rft.au=M.+Marchesi"></span> <a class="biburl" title="Marchesi1998" href="bibtexbrowser.php?key=Marchesi1998&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1997"></a>[1997]</td> <td class="bibitem">Vojislav B. Misic, Simon Moser, "From Formal Metamodels to Metrics: An Object-Oriented Approach", <i>In Proceedings of the Technology of Object-Oriented Languages and Systems Conference (TOOLS'97)</i>, pp. 330, 1997.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=From+Formal+Metamodels+to+Metrics%3A+An+Object-Oriented+Approach&amp;rft.btitle=Proceedings+of+the+Technology+of+Object-Oriented+Languages+and+Systems+Conference+%28TOOLS%2797%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1997&amp;rft.au=Vojislav+B.+Misic&amp;rft.au=Simon+Moser"></span> <a class="biburl" title="misic97" href="bibtexbrowser.php?key=misic97&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1997"></a>[1997]</td> <td class="bibitem">T. Hammer, L. Rosenberg, L. Huffman, L. Hyatt, "Requirements Metrics - Value Added", <i>In Proceedings of the 3rd IEEE International Symposium on Requirements Engineering (RE'97)</i>, IEEE Computer Society, pp. 141.1, 1997.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Requirements+Metrics+-+Value+Added&amp;rft.btitle=Proceedings+of+the+3rd+IEEE+International+Symposium+on+Requirements+Engineering+%28RE%2797%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1997&amp;rft.au=T.+Hammer&amp;rft.au=L.+Rosenberg&amp;rft.au=L.+Huffman&amp;rft.au=L.+Hyatt"></span> <a class="biburl" title="Hammer1997" href="bibtexbrowser.php?key=Hammer1997&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1996"></a>[1996]</td> <td class="bibitem">W. M. Wilson, L. H. Rosenberg, L. E. Hyatt, "Automated quality analysis of Natural Language requirement specifications", <i>In Proceeding of the PNSQC Conference</i>, 1996.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Automated+quality+analysis+of+Natural+Language+requirement+specifications&amp;rft.btitle=Proceeding+of+the+PNSQC+Conference&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1996&amp;rft.au=W.+M.+Wilson&amp;rft.au=L.+H.+Rosenberg&amp;rft.au=L.+E.+Hyatt"></span> <a class="biburl" title="wilson96" href="bibtexbrowser.php?key=wilson96&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1995"></a>[1995]</td> <td class="bibitem">Barry Boehm, Bradford Clark, Ellis Horowitz, Richard Shelby, Chris Westland, "An Overview of the COCOMO 2.0 Software Cost Model", <i>In Software Technology Conference</i>, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=An+Overview+of+the+COCOMO+2.0+Software+Cost+Model&amp;rft.btitle=Software+Technology+Conference&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=Barry+Boehm&amp;rft.au=Bradford+Clark&amp;rft.au=Ellis+Horowitz&amp;rft.au=Richard+Shelby&amp;rft.au=Chris+Westland"></span> <a class="biburl" title="cocomo:95" href="bibtexbrowser.php?key=cocomo%3A95&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1993"></a>[1993]</td> <td class="bibitem">A. Davis, S. Overmyer, K. Jordan, J. Caruso, F. Dandashi, A. Dinh, G. Kincaid, G. Ledeboer, P. Reynolds, P. Sitaram, A. Ta, M. Theofanos, "Identifying and measuring quality in a software requirements specification", <i>In Proceedings of the First International Software Metrics Symposium</i>, 1993.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Identifying+and+measuring+quality+in+a+software+requirements+specification&amp;rft.btitle=Proceedings+of+the+First+International+Software+Metrics+Symposium&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1993&amp;rft.au=A.+Davis&amp;rft.au=S.+Overmyer&amp;rft.au=K.+Jordan&amp;rft.au=J.+Caruso&amp;rft.au=F.+Dandashi&amp;rft.au=A.+Dinh&amp;rft.au=G.+Kincaid&amp;rft.au=G.+Ledeboer&amp;rft.au=P.+Reynolds&amp;rft.au=P.+Sitaram&amp;rft.au=A.+Ta&amp;rft.au=M.+Theofanos"></span> <a class="biburl" title="davis93" href="bibtexbrowser.php?key=davis93&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1991"></a>[1991]</td> <td class="bibitem">Shyam R. Chidamber, Chris F. Kemerer, "Towards a Metrics Suite for Object-Oriented Design", <i>In Proceedings of OOPSLA'91</i>, pp. 197-211, 1991.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Towards+a+Metrics+Suite+for+Object-Oriented+Design&amp;rft.btitle=Proceedings+of+OOPSLA%2791&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1991&amp;rft.au=Shyam+R.+Chidamber&amp;rft.au=Chris+F.+Kemerer"></span> <a class="biburl" title="Chidamber:Kemerer:91" href="bibtexbrowser.php?key=Chidamber%3AKemerer%3A91&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1990"></a>[1990]</td> <td class="bibitem">T. Khoshgoftaar, J. Munson, "The lines of code metric as a predictor of program faults: A critical analysis", <i>In Proceedings of the Computer Software and Applications Conference</i>, pp. 408-413, 1990.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=The+lines+of+code+metric+as+a+predictor+of+program+faults%3A+A+critical+analysis&amp;rft.btitle=Proceedings+of+the+Computer+Software+and+Applications+Conference&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1990&amp;rft.au=T.+Khoshgoftaar&amp;rft.au=J.+Munson"></span> <a class="biburl" title="Khoshgoftaar1990" href="bibtexbrowser.php?key=Khoshgoftaar1990&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1990"></a>[1990]</td> <td class="bibitem">Mariano P. Consens, Alberto O. Mendelzon, "GraphLog: a visual formalism for real life recursion", <i>In Proc. of the ACM Symp. on Principles of Database Systems</i>, pp. 404-416, 1990.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=GraphLog%3A+a+visual+formalism+for+real+life+recursion&amp;rft.btitle=Proc.+of+the+ACM+Symp.+on+Principles+of+Database+Systems&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1990&amp;rft.au=Mariano+P.+Consens&amp;rft.au=Alberto+O.+Mendelzon"></span> <a class="biburl" title="Consens1990" href="bibtexbrowser.php?key=Consens1990&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1985"></a>[1985]</td> <td class="bibitem">David N. Card, Gerald T. Page, Frank E. McGarry, "Criteria for Software Modularization.", <i>In ICSE</i>, pp. 372-377, 1985.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Criteria+for+Software+Modularization.&amp;rft.btitle=ICSE&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1985&amp;rft.au=David+N.+Card&amp;rft.au=Gerald+T.+Page&amp;rft.au=Frank+E.+McGarry"></span> <a class="biburl" title="CardPM85" href="bibtexbrowser.php?key=CardPM85&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div class="header">Refereed Workshop Papers</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Beatriz Mora, Mario Piattini, Francisco Ruiz, Felix Garcia, "SMML: Software Measurement Modeling Language", <i>In Proceedings of the 8th Workshop on Domain-Specific Modeling (DSM'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=SMML%3A+Software+Measurement+Modeling+Language&amp;rft.btitle=Proceedings+of+the+8th+Workshop+on+Domain-Specific+Modeling+%28DSM%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Beatriz+Mora&amp;rft.au=Mario+Piattini&amp;rft.au=Francisco+Ruiz&amp;rft.au=Felix+Garcia"></span> <a class="biburl" title="Mora2008a" href="bibtexbrowser.php?key=Mora2008a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">Martin Monperrus, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Counts_Count.pdf">"Counts Count"</a>, <i>In Proceedings of the 2nd Workshop on Model Size Metrics (MSM'07) co-located with MODELS'2007</i>, 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Counts+Count&amp;rft.btitle=Proceedings+of+the+2nd+Workshop+on+Model+Size+Metrics+%28MSM%2707%29+co-located+with+MODELS%272007&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FCounts_Count.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=Martin+Monperrus&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus07" href="bibtexbrowser.php?key=monperrus07&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Counts_Count.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Frank Weil, Andrij Neczwid, Kent Farbelow, "Model Size Metrics Research in Motorola", <i>In Proceedings of the Model Size Metrics workshop at Models'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model+Size+Metrics+Research+in+Motorola&amp;rft.btitle=Proceedings+of+the+Model+Size+Metrics+workshop+at+Models%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Frank+Weil&amp;rft.au=Andrij+Neczwid&amp;rft.au=Kent+Farbelow"></span> <a class="biburl" title="weil2006" href="bibtexbrowser.php?key=weil2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Harald Störrle, "On different notions of model size", <i>In Proceedings of the Model Size Metrics workshop at Models'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=On+different+notions+of+model+size&amp;rft.btitle=Proceedings+of+the+Model+Size+Metrics+workshop+at+Models%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Harald+St%C3%B6rrle"></span> <a class="biburl" title="stoerrle2006" href="bibtexbrowser.php?key=stoerrle2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Eric Vépa, Jean Bézivin, Hugo Brunelière, Frédéric Jouault, "Measuring Model Repositories", <i>In Proceedings of the 1st Workshop on Model Size Metrics (MSM'06) co-located with MoDELS'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Measuring+Model+Repositories&amp;rft.btitle=Proceedings+of+the+1st+Workshop+on+Model+Size+Metrics+%28MSM%2706%29+co-located+with+MoDELS%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Eric+V%C3%A9pa&amp;rft.au=Jean+B%C3%A9zivin&amp;rft.au=Hugo+Bruneli%C3%A8re&amp;rft.au=Fr%C3%A9d%C3%A9ric+Jouault"></span> <a class="biburl" title="Vepa2006" href="bibtexbrowser.php?key=Vepa2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Motoshi Saeki, Haruhiko Kaiya, "Model Metrics and Metrics of Model Transformation", <i>In Proc. of 1st Workshop on Quality in Modeling</i>, pp. 31-45, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model+Metrics+and+Metrics+of+Model+Transformation&amp;rft.btitle=Proc.+of+1st+Workshop+on+Quality+in+Modeling&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Motoshi+Saeki&amp;rft.au=Haruhiko+Kaiya"></span> <a class="biburl" title="Saeki2006" href="bibtexbrowser.php?key=Saeki2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Jacqueline McQuillan, James Power, "Some observations on the application of software metrics to UML models", <i>In Proceedings of the Model Size Metrics workshop at Models'2006</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Some+observations+on+the+application+of+software+metrics+to+UML+models&amp;rft.btitle=Proceedings+of+the+Model+Size+Metrics+workshop+at+Models%272006&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Jacqueline+McQuillan&amp;rft.au=James+Power"></span> <a class="biburl" title="Mcquillan2006c" href="bibtexbrowser.php?key=Mcquillan2006c&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Rüdiger Lincke, Welf Löwe, "Foundations for Defining Software Metrics", <i>In Proceedings of the 3rd International Workshop on Metamodels, Schemas, Grammars, and Ontologies for Reverse Engineering (ATEM)</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Foundations+for+Defining+Software+Metrics&amp;rft.btitle=Proceedings+of+the+3rd+International+Workshop+on+Metamodels%2C+Schemas%2C+Grammars%2C+and+Ontologies+for+Reverse+Engineering+%28ATEM%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=R%C3%BCdiger+Lincke&amp;rft.au=Welf+L%C3%B6we"></span> <a class="biburl" title="Lincke2006" href="bibtexbrowser.php?key=Lincke2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Jordi Cabot, Ernest Teniente, "A metric for measuring the complexity of OCL expressions", <i>In Model Size Metrics Workshop co-located with MODELS'06</i>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+metric+for+measuring+the+complexity+of+OCL+expressions&amp;rft.btitle=Model+Size+Metrics+Workshop+co-located+with+MODELS%2706&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Jordi+Cabot&amp;rft.au=Ernest+Teniente"></span> <a class="biburl" title="Cabot2006" href="bibtexbrowser.php?key=Cabot2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">A. Baroni, S. Braz, F. Abreu, "Using OCL to Formalize Object-Oriented Design Metrics Definitions", <i>In ECOOP'02 Workshop on Quantitative Approaches in OO Software Engineering</i>, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Using+OCL+to+Formalize+Object-Oriented+Design+Metrics+Definitions&amp;rft.btitle=ECOOP%2702+Workshop+on+Quantitative+Approaches+in+OO+Software+Engineering&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=A.+Baroni&amp;rft.au=S.+Braz&amp;rft.au=F.+Abreu"></span> <a class="biburl" title="baroni02" href="bibtexbrowser.php?key=baroni02&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2002"></a>[2002]</td> <td class="bibitem">Michele Lanza, Stéphane Ducasse, <a href="http://www.iam.unibe.ch/~scg/Archive/Papers/Lanz02bModelIndependentMetrics.pdf">"Beyond Language Independent Object-Oriented Metrics: Model Independent Metrics"</a>, <i>In Proceedings of the 6th International Workshop on Quantitative Approaches in Object-Oriented Software Engineering</i>, pp. 77-84, 2002.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Beyond+Language+Independent+Object-Oriented+Metrics%3A+Model+Independent+Metrics&amp;rft.btitle=Proceedings+of+the+6th+International+Workshop+on+Quantitative+Approaches+in+Object-Oriented+Software+Engineering&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.iam.unibe.ch%2F%7Escg%2FArchive%2FPapers%2FLanz02bModelIndependentMetrics.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2002&amp;rft.au=Michele+Lanza&amp;rft.au=St%C3%A9phane+Ducasse"></span> <a class="biburl" title="Lanza2002" href="bibtexbrowser.php?key=Lanza2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.iam.unibe.ch/~scg/Archive/Papers/Lanz02bModelIndependentMetrics.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2001"></a>[2001]</td> <td class="bibitem">Ralf Reissing, "Towards a Model for Object-Oriented Design Measurement", <i>In ECOOP'01 Workshop QAOOSE</i>, 2001.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Towards+a+Model+for+Object-Oriented+Design+Measurement&amp;rft.btitle=ECOOP%2701+Workshop+QAOOSE&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2001&amp;rft.au=Ralf+Reissing"></span> <a class="biburl" title="reissing2001" href="bibtexbrowser.php?key=reissing2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1998"></a>[1998]</td> <td class="bibitem">Claus Lewerentz, Frank Simon, "A Product Metrics Tool Integrated into a Software Development Environment", <i>In Proceedings of the Workshop on Object-Oriented Technology at ECOOP'98</i>, 1998.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Product+Metrics+Tool+Integrated+into+a+Software+Development+Environment&amp;rft.btitle=Proceedings+of+the+Workshop+on+Object-Oriented+Technology+at+ECOOP%2798&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1998&amp;rft.au=Claus+Lewerentz&amp;rft.au=Frank+Simon"></span> <a class="biburl" title="Lewerentz1998" href="bibtexbrowser.php?key=Lewerentz1998&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1997"></a>[1997]</td> <td class="bibitem">G. Poels, G. Dedene, "Complexity Metrics for Formally Specified Business Requirements", <i>In Proceedings of the Annual Oregon Workshop on Software Metrics (AOWSM'97)</i>, 1997.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Complexity+Metrics+for+Formally+Specified+Business+Requirements&amp;rft.btitle=Proceedings+of+the+Annual+Oregon+Workshop+on+Software+Metrics+%28AOWSM%2797%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1997&amp;rft.au=G.+Poels&amp;rft.au=G.+Dedene"></span> <a class="biburl" title="Poels1997" href="bibtexbrowser.php?key=Poels1997&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1992"></a>[1992]</td> <td class="bibitem">D. P. Tegarden, S. D. Sheetz, "Object-oriented system complexity: an integrated model of structure and perceptions", <i>In OOPSLA'92 Workshop on Metrics for Object-Oriented Software Development</i>, 1992.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Object-oriented+system+complexity%3A+an+integrated+model+of+structure+and+perceptions&amp;rft.btitle=OOPSLA%2792+Workshop+on+Metrics+for+Object-Oriented+Software+Development&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1992&amp;rft.au=D.+P.+Tegarden&amp;rft.au=S.+D.+Sheetz"></span> <a class="biburl" title="tegarden:sheetz:92" href="bibtexbrowser.php?key=tegarden%3Asheetz%3A92&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div class="header">Other Publications</div>
<table class="result">
<tr class="bibline"><td class="bibref"><a name="2008"></a>[2008]</td> <td class="bibitem">Martin Monperrus, <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">"La mesure des modèles par les modèles : une approche générative"</a>, PhD thesis, Université de Rennes, 2008. (Advisor: JM. Jézéquel; Examiners: H. Sahraoui, S. Ducasse)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=La+mesure+des+mod%C3%A8les+par+les+mod%C3%A8les+%3A+une+approche+g%C3%A9n%C3%A9rative&amp;rft.genre=report&amp;rft.pub=Universit%C3%A9+de+Rennes&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2Fla-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus"></span> <a class="biburl" title="monperrus08phd" href="bibtexbrowser.php?key=monperrus08phd&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2007"></a>[2007]</td> <td class="bibitem">The International Software Benchmarking Standards Group, "ISBSG Repositories", 2007.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=ISBSG+Repositories&amp;rft.genre=report&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2007&amp;rft.au=The+International+Software+Benchmarking+Standards+Group"></span> <a class="biburl" title="isbsg" href="bibtexbrowser.php?key=isbsg&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">SDMetrics, <a href="http://www.sdmetrics.com/">"The Software Design Metrics tool for the UML (http://www.sdmetrics.com/)"</a>, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=The+Software+Design+Metrics+tool+for+the+UML+%28http%3A%2F%2Fwww.sdmetrics.com%2F%29&amp;rft.genre=report&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.sdmetrics.com%2F&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=SDMetrics"></span> <a class="biburl" title="sdmetrics" href="bibtexbrowser.php?key=sdmetrics&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.sdmetrics.com/">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Smacchia S.A., "Code Query Language 1.5 Specification", Technical report, Smacchia S.A., 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Code+Query+Language+1.5+Specification&amp;rft.genre=report&amp;rft.pub=Smacchia+S.A.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Smacchia+S.A."></span> <a class="biburl" title="SMACCHIA.COM2006" href="bibtexbrowser.php?key=SMACCHIA.COM2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Modelware Project, "D2.7 MDD Business Metrics", Technical report, Framework Programme Information Society Technologies, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=D2.7+MDD+Business+Metrics&amp;rft.genre=report&amp;rft.pub=Framework+Programme+Information+Society+Technologies&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Modelware+Project"></span> <a class="biburl" title="ModelwareD2.7" href="bibtexbrowser.php?key=ModelwareD2.7&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Modelware Project, "D2.5 MDD Engineering Metrics Baseline", Technical report, Framework Programme Information Society Technologies, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=D2.5+MDD+Engineering+Metrics+Baseline&amp;rft.genre=report&amp;rft.pub=Framework+Programme+Information+Society+Technologies&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Modelware+Project"></span> <a class="biburl" title="ModelwareD2.5" href="bibtexbrowser.php?key=ModelwareD2.5&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Modelware Project, "D2.2 MDD Engineering Metrics Definition", Technical report, Framework Programme Information Society Technologies, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=D2.2+MDD+Engineering+Metrics+Definition&amp;rft.genre=report&amp;rft.pub=Framework+Programme+Information+Society+Technologies&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Modelware+Project"></span> <a class="biburl" title="ModelwareD2.2" href="bibtexbrowser.php?key=ModelwareD2.2&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2006"></a>[2006]</td> <td class="bibitem">Jacqueline McQuillan, James Power, "A Definition of the Chidamber and Kemerer Metrics suite for UML", Technical report, National University of Ireland, 2006.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=A+Definition+of+the+Chidamber+and+Kemerer+Metrics+suite+for+UML&amp;rft.genre=report&amp;rft.pub=National+University+of+Ireland&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2006&amp;rft.au=Jacqueline+McQuillan&amp;rft.au=James+Power"></span> <a class="biburl" title="McQuillan2006d" href="bibtexbrowser.php?key=McQuillan2006d&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2005"></a>[2005]</td> <td class="bibitem">Ganesh Kandula, Vinay Kumar Sathrasala, "Product and Management Metrics for Requirements.", Master's thesis, Umea University, 2005.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Product+and+Management+Metrics+for+Requirements.&amp;rft.genre=report&amp;rft.pub=Umea+University&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2005&amp;rft.au=Ganesh+Kandula&amp;rft.au=Vinay+Kumar+Sathrasala"></span> <a class="biburl" title="requirementsmetrics" href="bibtexbrowser.php?key=requirementsmetrics&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">Chris Kolde, "Basic metrics for requirements management", 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Basic+metrics+for+requirements+management&amp;rft.genre=report&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Chris+Kolde"></span> <a class="biburl" title="borlandrequirements" href="bibtexbrowser.php?key=borlandrequirements&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">Harmen Kastenberg, <a href="http://www.cs.utwente.nl/~kastenbe/public/Master_Thesis.pdf">"Software Metrics as Class Graph Properties"</a>, Master's thesis, University of Twente, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Metrics+as+Class+Graph+Properties&amp;rft.genre=report&amp;rft.pub=University+of+Twente&amp;rft_id=http%3A%2F%2Fwww.cs.utwente.nl%2F%7Ekastenbe%2Fpublic%2FMaster_Thesis.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Harmen+Kastenberg"></span> <a class="biburl" title="Kastenberg2004" href="bibtexbrowser.php?key=Kastenberg2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.cs.utwente.nl/~kastenbe/public/Master_Thesis.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2004"></a>[2004]</td> <td class="bibitem">Bruce Powel Douglass, <a href="http://www.ilogix.com/whitepapers/whitepapers.cfm">"Computing Model Complexity"</a>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Computing+Model+Complexity&amp;rft.genre=report&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.ilogix.com%2Fwhitepapers%2Fwhitepapers.cfm&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Bruce+Powel+Douglass"></span> <a class="biburl" title="Douglass2004" href="bibtexbrowser.php?key=Douglass2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.ilogix.com/whitepapers/whitepapers.cfm">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2003"></a>[2003]</td> <td class="bibitem">M. Medina Mora, C. Denger, "Requirements metrics: an initial literature survey on measurement approaches for requirements specifications", Technical report, Fraunhofer IESE, 2003.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Requirements+metrics%3A+an+initial+literature+survey+on+measurement+approaches+for+requirements+specifications&amp;rft.genre=report&amp;rft.pub=Fraunhofer+IESE&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2003&amp;rft.au=M.+Medina+Mora&amp;rft.au=C.+Denger"></span> <a class="biburl" title="remetricssurvey" href="bibtexbrowser.php?key=remetricssurvey&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2000"></a>[2000]</td> <td class="bibitem">NASA Software Assurance Technology Center, "Automated Requirement Measurement", 2000.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Automated+Requirement+Measurement&amp;rft.genre=report&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2000&amp;rft.au=NASA+Software+Assurance+Technology+Center"></span> <a class="biburl" title="arm-nasa" href="bibtexbrowser.php?key=arm-nasa&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1999"></a>[1999]</td> <td class="bibitem">Bruce Edmonds, "Syntactic Measures of Complexity", PhD thesis, University of Manchester, 1999.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Syntactic+Measures+of+Complexity&amp;rft.genre=report&amp;rft.pub=University+of+Manchester&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1999&amp;rft.au=Bruce+Edmonds"></span> <a class="biburl" title="syntactic-measures" href="bibtexbrowser.php?key=syntactic-measures&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1998"></a>[1998]</td> <td class="bibitem">Claus Lewerentz, Frank Simon, "Integrating an object-oriented metrics tool into SNiFF+", Technical report, BTU Cottbus, 1998.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Integrating+an+object-oriented+metrics+tool+into+SNiFF%2B&amp;rft.genre=report&amp;rft.pub=BTU+Cottbus&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1998&amp;rft.au=Claus+Lewerentz&amp;rft.au=Frank+Simon"></span> <a class="biburl" title="Lewerentz1998a" href="bibtexbrowser.php?key=Lewerentz1998a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1997"></a>[1997]</td> <td class="bibitem">J. Abounader, D. Lamb, "A Data Model for Object-Oriented Design Metrics", Technical report, Queen's University, Kingston, ON., 1997.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=A+Data+Model+for+Object-Oriented+Design+Metrics&amp;rft.genre=report&amp;rft.pub=Queen%27s+University%2C+Kingston%2C+ON.&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1997&amp;rft.au=J.+Abounader&amp;rft.au=D.+Lamb"></span> <a class="biburl" title="Abounader1997" href="bibtexbrowser.php?key=Abounader1997&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1995"></a>[1995]</td> <td class="bibitem">NASA Software Program, "Software Measurement Guidebook", Technical report, National Aeronautics and Space Administration, 1995.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Measurement+Guidebook&amp;rft.genre=report&amp;rft.pub=National+Aeronautics+and+Space+Administration&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1995&amp;rft.au=NASA+Software+Program"></span> <a class="biburl" title="guidebook-software" href="bibtexbrowser.php?key=guidebook-software&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1993"></a>[1993]</td> <td class="bibitem">L. M. Yap, B. Henderson-Sellers, "Consistency considerations of object-oriented class libraries", Technical report, University of New South Wales, no. 93/3, 1993.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Consistency+considerations+of+object-oriented+class+libraries&amp;rft.genre=report&amp;rft.pub=University+of+New+South+Wales&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1993&amp;rft.au=L.+M.+Yap&amp;rft.au=B.+Henderson-Sellers"></span> <a class="biburl" title="yap:henderson:93" href="bibtexbrowser.php?key=yap%3Ahenderson%3A93&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1992"></a>[1992]</td> <td class="bibitem">John Baumert, Mark McWhinney, "Software Measures and the Capability Maturity Model", Technical report, Software Engineering Institute, Carnegie Mellon University, 1992.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Measures+and+the+Capability+Maturity+Model&amp;rft.genre=report&amp;rft.pub=Software+Engineering+Institute%2C+Carnegie+Mellon+University&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=1992&amp;rft.au=John+Baumert&amp;rft.au=Mark+McWhinney"></span> <a class="biburl" title="Baumert1992" href="bibtexbrowser.php?key=Baumert1992&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

56
test/output/7927fcd8654efc9521cae97590ac1e7b.html

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="iso-8859-1"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Publications of Martin Monperrus</title>
<link>http://localhostbib=/var/www/bibtexbrowser/test/input/metrics.bib&amp;author=Martin+Monperrus&amp;rss</link>
<atom:link href="http://localhostbib=/var/www/bibtexbrowser/test/input/metrics.bib&amp;author=Martin+Monperrus&amp;rss" rel="self" type="application/rss+xml" />
<description></description>
<generator>bibtexbrowser v__MTIME__</generator>
<item>
<title>La mesure des modèles par les modèles : une approche générative</title>
<link>http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf</link>
<description>
Martin Monperrus, "La mesure des modèles par les modèles : une approche générative", PhD thesis, Université de Rennes, 2008. (Advisor: JM. Jézéquel; Examiners: H. Sahraoui, S. Ducasse)
</description>
<guid isPermaLink="false">%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib%3A%3Amonperrus08phd</guid>
</item>
<item>
<title>A Model-driven Measurement Approach</title>
<link>http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf</link>
<description>
Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, "A Model-driven Measurement Approach", In Proceedings of the ACM/IEEE 11th International Conference on Model Driven Engineering Languages and Systems (MODELS'2008), 2008. (acceptance rate: 58/274)
</description>
<guid isPermaLink="false">%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib%3A%3Amonperrus08d</guid>
</item>
<item>
<title>Measuring Models</title>
<link>http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf</link>
<description>
Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, "Measuring Models", Chapter in Model-Driven Software Development: Integrating Quality Assurance, IDEA Group, 2008.
Model-Driven Engineering (MDE) is an approach to software development that uses models as primary artifacts, from which code, documentation and tests are derived. One way of assessing quality assurance in a given domain is to define domain metrics. As text documents, models can be considered from a syntactic point of view i.e., thought of as graphs. We can readily apply graph-based metrics to them, such as the number of nodes, the number of edges or the fan-in/fan-out distributions. However, these metrics cannot leverage the semantic structuring enforced by each specific metamodel to give domain specific information. Contrary to graph-based metrics, more specific metrics do exist for given domains (such as LOC for programs), but they lack genericity. Our contribution is to propose one metric that is generic over the domains and the metamodels and allows the easy specification of an open-ended wide range of model metrics. </description>
<guid isPermaLink="false">%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib%3A%3Amonperrus08b</guid>
</item>
<item>
<title>Model-driven Engineering Metrics for Real Time Systems</title>
<link>http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf</link>
<description>
Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, "Model-driven Engineering Metrics for Real Time Systems", In Proceedings of the 4th European Congress on Embedded Real Time Software (ERTS'2008), 2008.
</description>
<guid isPermaLink="false">%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib%3A%3Amonperrus08a</guid>
</item>
<item>
<title>Counts Count</title>
<link>http://www.monperrus.net/martin/Counts_Count.pdf</link>
<description>
Martin Monperrus, Joël Champeau, Brigitte Hoeltzener, "Counts Count", In Proceedings of the 2nd Workshop on Model Size Metrics (MSM'07) co-located with MODELS'2007, 2007.
</description>
<guid isPermaLink="false">%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib%3A%3Amonperrus07</guid>
</item>
</channel>
</rss>

15
test/output/8fd675bda5bb61c211f3695a6ea6a38b.html

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?_author=Victor+R.+Basilis&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Publications of Victor R. Basilis</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<b>No match found!</b>
</body>
</html>

24
test/output/982dbdb9aaff28b153228d3d6b01a406.html

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?_author=Martin+Monperrus&amp;type=%5Earticle%7Cincollection%24&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Publications of Martin Monperrus &amp; Type: Article|incollection</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Publications of Martin Monperrus &amp; Type: Article|incollection <a href="bibtexbrowser.php?_author=Martin+Monperrus&amp;type=%5Earticle%7Cincollection%24&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2008</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">"Measuring Models"</a>, <i>Chapter in Model-Driven Software Development: Integrating Quality Assurance</i>, IDEA Group, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Model-Driven+Software+Development%3A+Integrating+Quality+Assurance&amp;rft.atitle=Measuring+Models&amp;rft.genre=bookitem&amp;rft.pub=IDEA+Group&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FMeasuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08b" href="bibtexbrowser.php?key=monperrus08b&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">[pdf]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

30
test/output/b4155fdd8a001ff84fed76fdff701bff.html

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?exclude=workshop&amp;_author=Martin+Monperrus&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Exclude: Workshop &amp; Publications of Martin Monperrus</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Exclude: Workshop &amp; Publications of Martin Monperrus <a href="bibtexbrowser.php?exclude=workshop&amp;_author=Martin+Monperrus&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2008</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="4"></a>[4]</td> <td class="bibitem">Martin Monperrus, <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">"La mesure des modèles par les modèles : une approche générative"</a>, PhD thesis, Université de Rennes, 2008. (Advisor: JM. Jézéquel; Examiners: H. Sahraoui, S. Ducasse)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=La+mesure+des+mod%C3%A8les+par+les+mod%C3%A8les+%3A+une+approche+g%C3%A9n%C3%A9rative&amp;rft.genre=report&amp;rft.pub=Universit%C3%A9+de+Rennes&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2Fla-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus"></span> <a class="biburl" title="monperrus08phd" href="bibtexbrowser.php?key=monperrus08phd&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/la-mesure-des-modeles-par-les-modeles-une-approche-generative.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="3"></a>[3]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">"A Model-driven Measurement Approach"</a>, <i>In Proceedings of the ACM/IEEE 11th International Conference on Model Driven Engineering Languages and Systems (MODELS'2008)</i>, 2008. (acceptance rate: 58/274)
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Model-driven+Measurement+Approach&amp;rft.btitle=Proceedings+of+the+ACM%2FIEEE+11th+International+Conference+on+Model+Driven+Engineering+Languages+and+Systems+%28MODELS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FA-Model-Driven-Measurement-Approach.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08d" href="bibtexbrowser.php?key=monperrus08d&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/A-Model-Driven-Measurement-Approach.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2"></a>[2]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">"Measuring Models"</a>, <i>Chapter in Model-Driven Software Development: Integrating Quality Assurance</i>, IDEA Group, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Model-Driven+Software+Development%3A+Integrating+Quality+Assurance&amp;rft.atitle=Measuring+Models&amp;rft.genre=bookitem&amp;rft.pub=IDEA+Group&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FMeasuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08b" href="bibtexbrowser.php?key=monperrus08b&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Measuring-models-in-Model-Driven-Software-Development-Integrating-Quality-Assurance.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">Martin Monperrus, Jean-Marc Jézéquel, Joël Champeau, Brigitte Hoeltzener, <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">"Model-driven Engineering Metrics for Real Time Systems"</a>, <i>In Proceedings of the 4th European Congress on Embedded Real Time Software (ERTS'2008)</i>, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Model-driven+Engineering+Metrics+for+Real+Time+Systems&amp;rft.btitle=Proceedings+of+the+4th+European+Congress+on+Embedded+Real+Time+Software+%28ERTS%272008%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.monperrus.net%2Fmartin%2FModel-driven_Engineering_Metrics_for_Real_Time_Systems.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2008&amp;rft.au=Martin+Monperrus&amp;rft.au=Jean-Marc+J%C3%A9z%C3%A9quel&amp;rft.au=Jo%C3%ABl+Champeau&amp;rft.au=Brigitte+Hoeltzener"></span> <a class="biburl" title="monperrus08a" href="bibtexbrowser.php?key=monperrus08a&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.monperrus.net/martin/Model-driven_Engineering_Metrics_for_Real_Time_Systems.pdf">[pdf]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>

219
test/output/d4428dcf3da7c71cd6477294a6c93a14.html

@ -0,0 +1,219 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<meta name="robots" content="noindex"/>
<title></title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<form action="?" method="get" target="main">
<input type="text" name="search" class="input_box" size="18"/>
<input type="hidden" name="bib" value="/var/www/bibtexbrowser/test/input/metrics.bib"/>
<br/>
<input type="submit" value="search" class="input_box"/>
</form>
<br/> <table style="width:100%" class="menu">
<tr>
<td>
<!-- this table is used to have the label on the left
and the navigation links on the right -->
<table style="width:100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="header"><b>Types</b></td>
<td class="header" align="right"><b>
</b></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<a href="?type=&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">all types</a>
<div class="mini_se"></div>
<a href="?type=article&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">article</a>
<div class="mini_se"></div>
<a href="?type=techreport&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">techreport</a>
<div class="mini_se"></div>
<a href="?type=inproceedings&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">inproceedings</a>
<div class="mini_se"></div>
<a href="?type=incollection&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">incollection</a>
<div class="mini_se"></div>
<a href="?type=book&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">book</a>
<div class="mini_se"></div>
<a href="?type=misc&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">misc</a>
<div class="mini_se"></div>
<a href="?type=phdthesis&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">phdthesis</a>
<div class="mini_se"></div>
<a href="?type=mastersthesis&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">mastersthesis</a>
<div class="mini_se"></div>
</td>
</tr>
</table>
<br/> <table style="width:100%" class="menu">
<tr>
<td>
<!-- this table is used to have the label on the left
and the navigation links on the right -->
<table style="width:100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="header"><b>Years</b></td>
<td class="header" align="right"><b>
<a href="?year_page=2&amp;menu=&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib"><b>[next]</b></a>
</b></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<a href="?year=2009&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2009</a>
<div class="mini_se"></div>
<a href="?year=2008&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2008</a>
<div class="mini_se"></div>
<a href="?year=2007&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2007</a>
<div class="mini_se"></div>
<a href="?year=2006&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2006</a>
<div class="mini_se"></div>
<a href="?year=2005&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2005</a>
<div class="mini_se"></div>
<a href="?year=2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2004</a>
<div class="mini_se"></div>
<a href="?year=2003&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2003</a>
<div class="mini_se"></div>
<a href="?year=2002&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2002</a>
<div class="mini_se"></div>
<a href="?year=2001&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2001</a>
<div class="mini_se"></div>
<a href="?year=2000&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">2000</a>
<div class="mini_se"></div>
<a href="?year=1999&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1999</a>
<div class="mini_se"></div>
<a href="?year=1998&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1998</a>
<div class="mini_se"></div>
<a href="?year=1997&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1997</a>
<div class="mini_se"></div>
<a href="?year=1996&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1996</a>
<div class="mini_se"></div>
<a href="?year=1995&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1995</a>
<div class="mini_se"></div>
<a href="?year=1994&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1994</a>
<div class="mini_se"></div>
<a href="?year=1993&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1993</a>
<div class="mini_se"></div>
<a href="?year=1992&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1992</a>
<div class="mini_se"></div>
<a href="?year=1991&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1991</a>
<div class="mini_se"></div>
<a href="?year=1990&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">1990</a>
<div class="mini_se"></div>
</td>
</tr>
</table>
<br/> <table style="width:100%" class="menu">
<tr>
<td>
<!-- this table is used to have the label on the left
and the navigation links on the right -->
<table style="width:100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="header"><b>Authors</b></td>
<td class="header" align="right"><b>
<a href="?author_page=2&amp;menu=&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib"><b>[next]</b></a>
</b></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<a href="?author=J.+Abounader&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">J. Abounader</a>
<div class="mini_se"></div>
<a href="?author=F.+Abreu&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">F. Abreu</a>
<div class="mini_se"></div>
<a href="?author=Alberto+Agostini&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Alberto Agostini</a>
<div class="mini_se"></div>
<a href="?author=Jarallah+S.+Alghamdi&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Jarallah S. Alghamdi</a>
<div class="mini_se"></div>
<a href="?author=El+Hachemi+Alikacem&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">El Hachemi Alikacem</a>
<div class="mini_se"></div>
<a href="?author=L.+Baigorria&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">L. Baigorria</a>
<div class="mini_se"></div>
<a href="?author=Albert+L.+Baker&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Albert L. Baker</a>
<div class="mini_se"></div>
<a href="?author=Jagdish+Bansiya&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Jagdish Bansiya</a>
<div class="mini_se"></div>
<a href="?author=A.+Baroni&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">A. Baroni</a>
<div class="mini_se"></div>
<a href="?author=Aline+L%F9cia+Baroni&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Aline Lùcia Baroni</a>
<div class="mini_se"></div>
<a href="?author=V.+Basili&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">V. Basili</a>
<div class="mini_se"></div>
<a href="?author=Victor+R.+Basili&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Victor R. Basili</a>
<div class="mini_se"></div>
<a href="?author=A.+El+Bastawissi&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">A. El Bastawissi</a>
<div class="mini_se"></div>
<a href="?author=John+Baumert&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">John Baumert</a>
<div class="mini_se"></div>
<a href="?author=Jean+Paul+Van+Belle&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Jean Paul Van Belle</a>
<div class="mini_se"></div>
<a href="?author=Brian+Berenbach&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Brian Berenbach</a>
<div class="mini_se"></div>
<a href="?author=E.+Berghout&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">E. Berghout</a>
<div class="mini_se"></div>
<a href="?author=Manuel+F.+Bertoa&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Manuel F. Bertoa</a>
<div class="mini_se"></div>
<a href="?author=Dirk+Beyer&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Dirk Beyer</a>
<div class="mini_se"></div>
<a href="?author=James+M.+Bieman&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">James M. Bieman</a>
<div class="mini_se"></div>
<a href="?author=Barry+Boehm&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Barry Boehm</a>
<div class="mini_se"></div>
<a href="?author=Barry+W.+Boehm&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Barry W. Boehm</a>
<div class="mini_se"></div>
<a href="?author=Cornelia+Boldyreff&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Cornelia Boldyreff</a>
<div class="mini_se"></div>
<a href="?author=Artur+Boronat&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Artur Boronat</a>
<div class="mini_se"></div>
<a href="?author=Gail+Borotto&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Gail Borotto</a>
<div class="mini_se"></div>
<a href="?author=Jan+Bosch&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Jan Bosch</a>
<div class="mini_se"></div>
<a href="?author=M.+Boshra&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">M. Boshra</a>
<div class="mini_se"></div>
<a href="?author=S.+Braz&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">S. Braz</a>
<div class="mini_se"></div>
<a href="?author=L.+Briand&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">L. Briand</a>
<div class="mini_se"></div>
<a href="?author=Lionel+C.+Briand&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">Lionel C. Briand</a>
<div class="mini_se"></div>
</td>
</tr>
</table>
<br/> <table style="width:100%" class="menu">
<tr>
<td>
<!-- this table is used to have the label on the left
and the navigation links on the right -->
<table style="width:100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="header"><b>Keywords</b></td>
<td class="header" align="right"><b>
</b></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<a href="?keywords=components&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib" target="main">components</a>
<div class="mini_se"></div>
</td>
</tr>
</table>
<br/></body>
</html>

38
test/output/edeaf42415d65bf6708bafa6396c7824.html

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="generator" content="bibtexbrowser v__MTIME__" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="bibtexbrowser.php?year=2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss&amp;rss" /><title>Year: 2004</title><style type="text/css"><!--
BODY {
color: red;
}
--></style></head>
<body>
<div class="rheader">Year: 2004 <a href="bibtexbrowser.php?year=2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib&amp;rss" class="rsslink">[rss]</a></div>
<table class="result" >
<tr class="date">
<td colspan="2" class="header">2004</td>
</tr>
<tr class="bibline"><td class="bibref"><a name="8"></a>[8]</td> <td class="bibitem">H. Ma, W. Shao, L.Zhang, Z.Ma, Y.Jiang, "Applying OO Metrics to Assess UML Meta-Models", <i>In Proceedings of MODELS/UML'2004</i>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Applying+OO+Metrics+to+Assess+UML+Meta-Models&amp;rft.btitle=Proceedings+of+MODELS%2FUML%272004&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=H.+Ma&amp;rft.au=W.+Shao&amp;rft.au=L.Zhang&amp;rft.au=Z.Ma&amp;rft.au=Y.Jiang"></span> <a class="biburl" title="metrics-uml-metamodel" href="bibtexbrowser.php?key=metrics-uml-metamodel&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="7"></a>[7]</td> <td class="bibitem">Chris Kolde, "Basic metrics for requirements management", 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Basic+metrics+for+requirements+management&amp;rft.genre=report&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Chris+Kolde"></span> <a class="biburl" title="borlandrequirements" href="bibtexbrowser.php?key=borlandrequirements&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="6"></a>[6]</td> <td class="bibitem">Yogesh Singh, Sangeeta Sabharwal, Manu Sood, "A Systematic Approach to Measure the Problem Complexity of Software Requirement Specifications of an Information System", <i>In Information and Management Sciences</i>, vol. 15, pp. 69-90, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.atitle=A+Systematic+Approach+to+Measure+the+Problem+Complexity+of+Software+Requirement+Specifications+of+an+Information+System&amp;rft.jtitle=Information+and+Management+Sciences&amp;rft.volume=15&amp;rft.issue=&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Yogesh+Singh&amp;rft.au=Sangeeta+Sabharwal&amp;rft.au=Manu+Sood"></span> <a class="biburl" title="Singh2004" href="bibtexbrowser.php?key=Singh2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="5"></a>[5]</td> <td class="bibitem">V. L. Narasimhan, B. Hendradjaya, "Component Integration Metrics", <i>In Proceedings of the International Conference on Software Engineering Research and Practice (SERP'04)</i>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Component+Integration+Metrics&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Software+Engineering+Research+and+Practice+%28SERP%2704%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=V.+L.+Narasimhan&amp;rft.au=B.+Hendradjaya"></span> <a class="biburl" title="Narasimhan2004" href="bibtexbrowser.php?key=Narasimhan2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="4"></a>[4]</td> <td class="bibitem">Harmen Kastenberg, <a href="http://www.cs.utwente.nl/~kastenbe/public/Master_Thesis.pdf">"Software Metrics as Class Graph Properties"</a>, Master's thesis, University of Twente, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Software+Metrics+as+Class+Graph+Properties&amp;rft.genre=report&amp;rft.pub=University+of+Twente&amp;rft_id=http%3A%2F%2Fwww.cs.utwente.nl%2F%7Ekastenbe%2Fpublic%2FMaster_Thesis.pdf&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Harmen+Kastenberg"></span> <a class="biburl" title="Kastenberg2004" href="bibtexbrowser.php?key=Kastenberg2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.cs.utwente.nl/~kastenbe/public/Master_Thesis.pdf">[pdf]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="3"></a>[3]</td> <td class="bibitem">Félix Garcia, Francisco Ruiz, Mario Piattini, "Definition and empirical validation of metrics for software process models", <i>In Proceedings of the International Conference on Product Focused Software Process Improvement (PROFES'2004)</i>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=Definition+and+empirical+validation+of+metrics+for+software+process+models&amp;rft.btitle=Proceedings+of+the+International+Conference+on+Product+Focused+Software+Process+Improvement+%28PROFES%272004%29&amp;rft.genre=bookitem&amp;rft.pub=&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=F%C3%A9lix+Garcia&amp;rft.au=Francisco+Ruiz&amp;rft.au=Mario+Piattini"></span> <a class="biburl" title="Garcia2004" href="bibtexbrowser.php?key=Garcia2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="2"></a>[2]</td> <td class="bibitem">Xavier Franch, Gemma Grau, Carme Quer, "A Framework for the Definition of Metrics for Actor-Dependency Models", <i>In Proceedings of the 2th IEEE International Requirements Engineering Conference (RE'04)</i>, IEEE Computer Society, pp. 348-349, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.atitle=A+Framework+for+the+Definition+of+Metrics+for+Actor-Dependency+Models&amp;rft.btitle=Proceedings+of+the+2th+IEEE+International+Requirements+Engineering+Conference+%28RE%2704%29&amp;rft.genre=bookitem&amp;rft.pub=IEEE+Computer+Society&amp;rft_id=info%3Adoi%2F10.1109%2FRE.2004.2&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Xavier+Franch&amp;rft.au=Gemma+Grau&amp;rft.au=Carme+Quer"></span> <a class="biburl" title="Franch2004" href="bibtexbrowser.php?key=Franch2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://dx.doi.org/10.1109/RE.2004.2">[doi]</a></td></tr>
<tr class="bibline"><td class="bibref"><a name="1"></a>[1]</td> <td class="bibitem">Bruce Powel Douglass, <a href="http://www.ilogix.com/whitepapers/whitepapers.cfm">"Computing Model Complexity"</a>, 2004.
<span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.btitle=Computing+Model+Complexity&amp;rft.genre=report&amp;rft.pub=&amp;rft_id=http%3A%2F%2Fwww.ilogix.com%2Fwhitepapers%2Fwhitepapers.cfm&amp;rfr_id=info%3Asid%2Flocalhost%3A%2Fvar%2Fwww%2Fbibtexbrowser%2Ftest%2Finput%2Fmetrics.bib&amp;rft.date=2004&amp;rft.au=Bruce+Powel+Douglass"></span> <a class="biburl" title="Douglass2004" href="bibtexbrowser.php?key=Douglass2004&amp;bib=%252Fvar%252Fwww%252Fbibtexbrowser%252Ftest%252Finput%252Fmetrics.bib">[bib]</a> <a href="http://www.ilogix.com/whitepapers/whitepapers.cfm">[pdf]</a></td></tr>
</table>
<div style="text-align:right;font-size: xx-small;opacity: 0.6;" class="poweredby"><!-- If you like bibtexbrowser, thanks to keep the link :-) -->Powered by <a href="http://www.monperrus.net/martin/bibtexbrowser/">bibtexbrowser</a><!--v__MTIME__--></div>
</body>
</html>
Loading…
Cancel
Save